欢迎来到萧静默的博客

书山有路勤为径,学海无涯苦作舟。
摘要: using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int[] a = { 1, 2, 3, 4, 5, 6 };//省略的数组声明方法 for (int i = 0; i < 阅读全文
posted @ 2019-11-06 16:50 萧静默 阅读(183) 评论(0) 推荐(0) 编辑
摘要: using System; namespace program { enum WeekDays { a,//0 b,//1 c = 11,//11 赋值以后就变成11,不赋值就是2 d,//12 e,//13 f,//14 g//15 }//不能输入数字 struct student { publi 阅读全文
posted @ 2019-11-06 14:42 萧静默 阅读(460) 评论(0) 推荐(0) 编辑