小程序。找和七有关的数字
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); }
|
请发表评论