这个实现了1-9的循环显示输出,挺巧的一个方法。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace P2._2
{
class Program
{
static void Main(string[] args)
{
int x = 0;
while (true)
{
x = (x + 1) % 10;
Console.WriteLine(“the Value of x is {0}”,x);
}
Console.ReadLine();
}
}
}
123
123123123
@乔小伟,
@乔小伟, 汗~~你是来捣乱的吧~~
当是10的倍数就跳出
@会跳舞的鞋子, 这是死循环哈 跳不出去的 就是循环输出0-9 :)