分享几个有趣的小程序

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

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);
}

 

posted @   五月十九  阅读(1071)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· DeepSeek火爆全网,官网宕机?本地部署一个随便玩「LLM探索」
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 上周热点回顾(1.20-1.26)
· 【译】.NET 升级助手现在支持升级到集中式包管理
点击右上角即可分享
微信分享提示