C# Break 跳出当前循环

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _07_break关键字的用法  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             //int i = 1;  
  14.             //int j=1;  
  15.             //while (i <= 10)  
  16.             //{  
  17.             //    while (j <= 10)  
  18.             //    {  
  19.             //        Console.WriteLine("我是里面的while循环");  
  20.             //        j++;  
  21.             //        break;  
  22.             //    }  
  23.             //    Console.WriteLine("我是外面的while循环");  
  24.             //    i++;  
  25.             //}  
  26.             //Console.ReadKey();  
  27.   
  28.   
  29.             //int i = 0;  
  30.             //while (i < 10)  
  31.             //{  
  32.             //    Console.WriteLine("Hello 酷狗");  
  33.             //    break;  
  34.             //}  
  35.             //Console.ReadKey();  
  36.   
  37.             // 要求用户输入用户名和密码 用户名只要不是admin 密码不是888888  
  38.             //循环体:提示用户输入用户名 我们接收  密码 接收 判断是否登陆成功  
  39.             //循环条件:用户名或密码错误  
  40.             string userName = "";  
  41.             string userPwd = "";  
  42.             while (userName != "admin" || userPwd != "888888")  
  43.             {  
  44.                 Console.WriteLine("请输入用户名");  
  45.                 userName = Console.ReadLine();  
  46.                 Console.WriteLine("请输入密码");  
  47.                 userPwd = Console.ReadLine();  
  48.             }  
  49.             Console.WriteLine("登陆成功");  
  50.             Console.ReadKey();  
  51.         }  
  52.     }  
  53. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: