随笔分类 -  0基础入门.NET

摘要:/* * 循环的使用 * * */ // do while int i = 0; do { i++; Console.WriteLine($"{i}"); } while (i < 10); // while while (i < 11) { i++; Console.WriteLine($"{i} 阅读全文
posted @ 2020-04-12 18:31 谁说程序猿很猥琐 阅读(191) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-04-12 17:45 谁说程序猿很猥琐 阅读(145) 评论(0) 推荐(0)
摘要:class Program { static void Main(string[] args) { /* C# 基础语法,【数组】的使用及理解 * 数组长度必须固定 * 数组的索引从0开始 * */ string name = "制定项目章程"; string[] nams = new string 阅读全文
posted @ 2020-04-12 12:07 谁说程序猿很猥琐 阅读(92) 评论(0) 推荐(0)