- 205
- 0
- 约3.5万字
- 约 49页
- 2017-06-10 发布于天津
- 举报
C#程序设计编程实例大全.doc
C#程序设计编程实例大全 using System;
class hello
{
static void Main()
{
Console.WriteLine(Hello World);
}
} using System;
class Test
{
static void Main()
{
//int[] arr=new int[] {1,2,3};
int[] arr={1,2,3};
for(int i=0;iarr.Length;i++)
Console.WriteLine(arr[i]);
}
} using System;
class Test
{
static void Main()
{
for(int i=0;i256;i++)
{
if(i%10==0)
{
Console.WriteLine();
}
Console.WriteLine({0,3}:{1,-3},i,(char)i);
}
}
} using System;
abstract class A
{
protected int _x;
public abstract void F();
public abs
原创力文档

文档评论(0)