随笔分类 - 0基础入门.NET
摘要:/* * 循环的使用 * * */ // do while int i = 0; do { i++; Console.WriteLine($"{i}"); } while (i < 10); // while while (i < 11) { i++; Console.WriteLine($"{i}
阅读全文
摘要:class Program { static void Main(string[] args) { /* C# 基础语法,【数组】的使用及理解 * 数组长度必须固定 * 数组的索引从0开始 * */ string name = "制定项目章程"; string[] nams = new string
阅读全文