using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {
? ? ? ? ? ? Console.WriteLine("請(qǐng)輸入你的密碼");
? ? ? ? ? ? int mima = Convert.ToInt32(Console.ReadLine());
? ? ? ? ? ? if (mima == 88888)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Console.WriteLine("正確");
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Console.WriteLine("請(qǐng)?jiān)佥斎胍淮?);
? ? ? ? ? ? ? ? int mima2 = Convert.ToInt32(Console.ReadLine());
? ? ? ? ? ? ? ? if (mima2 == 88888)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? Console.WriteLine("正確");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? Console.WriteLine("程序錯(cuò)誤");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? Console.ReadKey();
? ? ? ? ? ? }
? ? ? ? }
? ? }
}