• 烧开水循环


    namespace 烧开水循环跳转
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.ForegroundColor = ConsoleColor.Green;
                Console.Clear();
                while (true)
                {
                   
                    string x;
                   
                   
                    Console.WriteLine("请问您是否要烧开水(Y/N)");
                    x = Console.ReadLine();
                    if (x == "Y")
                    {
                        for (int i = 1; i <= 100; i++)
                        {
                           
                            Console.WriteLine("当前温度为"+i+"℃");
                               
                          
                           if (i == 30)
                            {
                                Console.WriteLine(i + "℃" + "水温了");
                            }
                          
                            else if (i == 50)
                            {
                                Console.WriteLine(i + "℃" + "水热了");
                            }
                          
                            else if (i == 80)
                            {
                                Console.WriteLine(i + "℃" + "水快开了");
                            }
                           
                            else if (i == 100)
                            {
                                Console.WriteLine(i + "℃" + "水开了");
                             
                            }

                          
                      }

                    }
                    else if (x == "N")
                    {
                        Console.WriteLine("不喝水,渴死你丫的!");
                    }
                    else
                    {
                        Console.WriteLine("有病吧你!!");
                    }

                    Console.ReadLine();
                }
            }
        }
    }

  • 相关阅读:
    HBase 安装设置
    Python中通过函数对象创建全局变量
    Scala 中 构造函数,重载函数的执行顺序
    Hive 安装配置
    976. 三角形的最大周长
    922. 按奇偶排序数组 II
    350. 两个数组的交集 II
    349. 两个数组的交集
    242. 有效的字母异位词
    925. 长按键入
  • 原文地址:https://www.cnblogs.com/lk-kk/p/4381761.html
Copyright © 2020-2023  润新知