for(初始化语句; 判断条件; 迭代器){
// 循环主体(要执行的代码)
}
图:for 循环执行流程
using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args){ for(int i = 1; i <= 9; i++){ Console.Write("{0} ",i); } } } }运行结果如下:
1 2 3 4 5 6 7 8 9
using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args){ for(int i = 1; i <= 9; i++){ for(int j = 1; j <= i; j++){ Console.Write("{0} x {1} = {2} ", j, i, i*j); } Console.WriteLine(); } } } }运行结果如下:
1 x 1 = 1
1 x 2 = 2 2 x 2 = 4
1 x 3 = 3 2 x 3 = 6 3 x 3 = 9
1 x 4 = 4 2 x 4 = 8 3 x 4 = 12 4 x 4 = 16
1 x 5 = 5 2 x 5 = 10 3 x 5 = 15 4 x 5 = 20 5 x 5 = 25
1 x 6 = 6 2 x 6 = 12 3 x 6 = 18 4 x 6 = 24 5 x 6 = 30 6 x 6 = 36
1 x 7 = 7 2 x 7 = 14 3 x 7 = 21 4 x 7 = 28 5 x 7 = 35 6 x 7 = 42 7 x 7 = 49
1 x 8 = 8 2 x 8 = 16 3 x 8 = 24 4 x 8 = 32 5 x 8 = 40 6 x 8 = 48 7 x 8 = 56 8 x 8 = 64
1 x 9 = 9 2 x 9 = 18 3 x 9 = 27 4 x 9 = 36 5 x 9 = 45 6 x 9 = 54 7 x 9 = 63 8 x 9 = 72 9 x 9 = 81
using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args){ for (; ;) { Console.WriteLine("编程帮!"); } } } }运行上面的代码会在控制台一直输出“编程帮!”,如果不手动终止程序那么程序将会一直执行下去。
本文链接:http://task.lmcjl.com/news/18254.html