码迷,mamicode.com
首页 > 其他好文 > 详细

分享几个有趣的小程序

时间:2016-04-13 20:29:01      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

小程序。找和七有关的数字

int a;
bool ok1, ok2, ok3, ok;

a = Convert.ToInt32(Console.ReadLine());
ok1 = a % 7 == 0;
ok2 = a / 7 == 7;
ok3 = a / 10 == 7;
ok = ok1 || ok2 || ok3;
string jieguo = ok == true ? "有关系" : "没关系";
Console.WriteLine(jieguo);

 

 

小程序。你比豹子跑得快吗?

Console.WriteLine("你比豹子跑得快吗Y/N?");
string a = Console.ReadLine();


if (a == "y" || a == "Y")
{
Console.Write("你比禽兽还禽兽!!");

}
else
{
Console.Write("你禽兽不如!!");
}

 

 

小程序。判断到底是平年闰年
int year = Convert.ToInt32(Console.ReadLine());
if (0 == year % 400 || 0 == year % 4 && 0 != year % 100)
{
Console.WriteLine("闰年");
}
else
{

Console.WriteLine("平年");
}

 

 

 

小程序。找到三个数中最大的数。

int a, b, c, d;
a = Convert.ToInt32(Console.ReadLine());
b = Convert.ToInt32(Console.ReadLine());
c = Convert.ToInt32(Console.ReadLine());


if (a > b)
{
d = a;

}
else
{
d = b;


}
if (d < c)
{
d = c;
Console.WriteLine(d);
}
else
{
Console.WriteLine(d);
}

 

分享几个有趣的小程序

标签:

原文地址:http://www.cnblogs.com/zzc134680/p/5388492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!