zoukankan      html  css  js  c++  java
  • 烧开水循环

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

  • 相关阅读:
    NSPredicate
    label 下划线加自动换行
    【搬运】快速增加文档注释
    NSSortDescriptor 数组排序
    【搬运】打开模拟器沙盒目录
    NSTimer 详解
    Android打开外部DB文件
    图片压缩与缓存
    StartService与BindService
    Android发送通知栏通知
  • 原文地址:https://www.cnblogs.com/lk-kk/p/4381761.html
Copyright © 2011-2022 走看看