分支结构之IF语句
2012-04-24 17:04 精诚所至 金石为开 阅读(287) 评论(0) 编辑 收藏 举报本示例演示IF语句的使用,比较两个数值的大小,并输出结果。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | using System; namespace a { class Program { public static void Main( string [] args) { string comparison; Console.WriteLine( "Enter a number:" ); double var1=Convert.ToDouble(Console.ReadLine()); Console.WriteLine( "Enter another number:" ); double var2=Convert.ToDouble(Console.ReadLine()); if (var1<var2) comparison= "less than" ; else { if (var1==var2) comparison= "equal to" ; else comparison= "greater than" ; } Console.WriteLine( "The first number is {0} the second number." ,comparison); Console.ReadKey(); } } } |
努力加载评论中...
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步