首页上一页 1 下一页尾页 2 条记录 1/1页
while循环执行语句 ,
发表在C#图书答疑
2013-08-11
是否精华
是
否
版块置顶:
是
否
static void Main(string[] args)
{
int s=0,num=80;
while (s<num)
{
s++;
if (s>40)
break;
}
if ((s%2)==0)
{
continue;
}
Console.WriteLine(s);
Console.ReadLine();
请问这个程序是对的吗? 我这是照搬书上的 ,但是提示有一个错误。
在前面的一个小章节中, 也有这么个情况一个程序下来错误过半 , 仔细检查跟书上的一模一样 。
{
int s=0,num=80;
while (s<num)
{
s++;
if (s>40)
break;
}
if ((s%2)==0)
{
continue;
}
Console.WriteLine(s);
Console.ReadLine();
请问这个程序是对的吗? 我这是照搬书上的 ,但是提示有一个错误。
在前面的一个小章节中, 也有这么个情况一个程序下来错误过半 , 仔细检查跟书上的一模一样 。