• 烧开水循环


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

  • 相关阅读:
    20180710
    20180709
    20180706
    20180705
    20180704
    python3.x 函数的参数
    python函数返回值
    Centos7下命令笔记-ls
    CentOS系统内核、操作系统位数以及系统参数查看
    CentOS7 配置光盘iso镜像为本地yum源
  • 原文地址:https://www.cnblogs.com/lk-kk/p/4381761.html
Copyright © 2020-2023  润新知