using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication7
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {
? ? ? ? ? ? string name = "";
? ? ? ? ? ? string pwd = "";
? ? ? ? ? ? do
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Console.WriteLine("請(qǐng)輸入用戶名");
? ? ? ? ? ? ? ? name = Console.ReadLine();
? ? ? ? ? ? ? ? Console.WriteLine("請(qǐng)輸入密碼");
? ? ? ? ? ? ? ? pwd = Console.ReadLine();
? ? ? ? ? ? ? ? if (name != "admin" || pwd != "888888")
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? Console.WriteLine("用戶名或密碼錯(cuò)誤");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? } while (name != "admin" || pwd != "888888");
? ? ? ? ? ? Console.ReadKey();