⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 身份验证.txt

📁 c语言多个实用小程序,会有帮助的~ 自己瞎编的
💻 TXT
字号:
 using System;
 class validate
 {
	 public static void Main()
	 {
		 string str_wrench="ilovemyfamily";
		 string str_next="";
		 Console.WriteLine ("请输入你的姓名:");
		 Console.ReadLine ();
		 do
		 {
			 Console.WriteLine ("请输入你的密码:");
			 string str_passwd=Console.ReadLine ();
			 if(str_passwd!=str_wrench)
			 {
				Console.WriteLine ("密码不正确,是否继续?Y/N");
			 }
			 str_next=Console.ReadLine ();
		 }while(str_next=="y"||str_next=="Y");
	 }
 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -