
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ConsoleApp4
{
class Program
{
static void Main(string[] args)
{
//Form f = new Form();
//f.WindowState = FormWindowState.Minimized;//枚举类型
//f.ShowDialog();
int[] array = new int[100];//声明一个长度为100的整型数组
int a=array[0];//数组下标从0~99
const int x = 100;//常量不能再次赋值
}
}
class Student
{
public static int Amount;
public int Age;
public string Name;
}
}

被折叠的 条评论
为什么被折叠?



