while循环,与for循环不同的是:循环次数不固定.如
using System;
using System.Collections.Generic;
using System.Text;
namespace _._while循环
{
class Program
{
static void Main(string[] args)
{
string str = Console.ReadLine();//用read接受str
while (str.Length == 2)//如果长度等于2的话,(让其一直走)
{
Console.WriteLine("你输入的字符正确!");
str = Console.ReadLine();//readline意思是读一行字符
}
}
}
}
阅读(623) | 评论(0) | 转发(0) |