好友
阅读权限10
听众
最后登录1970-1-1
|
葬礼昨天
发表于 2016-4-4 09:51
代码添加框没法提交,只能粘贴了
<code>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace egg
{
class Program
{
static void Main(string[] args)
{
int n = 1; //n表示鸡蛋数
do
{
if (n % 1 == 0) { } //如果能相等,则进入下一个判断
else //如果不相等则n+1,进入下一个循环
{
n++;
continue;
}
if (n % 2 == 1) { }
else
{
n++;
continue;
}
if (n % 3 == 0) { }
else
{
n++;
continue;
}
if (n % 4 == 1) { }
else
{
n++;
continue;
}
if (n % 5 == 4) { }
else
{
n++;
continue;
}
if (n % 6 == 3) { }
else
{
n++;
continue;
}
if (n % 7 == 5) { }
else
{
n++;
continue;
}
if (n % 8 == 1) { }
else
{
n++;
continue;
}
if (n % 9 == 0)
{
Console.WriteLine("这个鸡蛋数为:{0}", n);
break;
}
else
{
n++;
continue;
}
} while (true);
Console.Read();
}
}
}
<code>
大家有什么好的建议可以相互交流啊^_^
|
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|