在 C# 中,您可以使用逗号在一个语句中声明多个局部变量。以下显示相同的内容 -int a = 20, b = 70, c = 40, d = 90; 示例让我们看一个声明多个局部变量的示例。以下四个变量在同一语句中声明和初始化。在线演示using System; class Demo { static void Main() { int a = 20, b = 70, c = 40, d = 90; Console.WriteLine("{0} {1} {2} {3}", a, b, c, d); } } 输出 20 70 40 90
要在 C# 中计算阶乘,您可以使用 while 循环并循环到数字不等于 1 为止。这里 n 是您想要阶乘的值 -int res = 1; while (n != 1) { res = res * n; n = n - 1; } 以上,假设我们想要 5!(5 的阶乘)为此,n=5,循环迭代 1 -n=5 res = res*n 即 res =5;循环迭代 2 -n=4 res = res*n 即 res = 5*4 = 20循环迭代 3 -n=3 res = res*n 即 res = 20*3 = 60示例以此方式,所有... 阅读更多
当从另一个派生类形成派生类时,就会发生多层继承。祖父、父亲和儿子是代表 C# 中多层继承的完美示例 -示例以下是说明在 C# 中使用多层继承的示例。在线演示using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class Son : Father { public void DisplayTwo() { Console.WriteLine("Son.. "); } static void Main(string[] args) { Son s = new Son(); s.Display(); s.DisplayOne(); ... 阅读更多