今天學習了while語句,本身想了一道題,試着練習,改了幾回以後調試經過:學習
學生作題,若是所有都作對了,那麼會獲得老師的誇獎,若是作錯了,那麼每道題要罰抄十遍:spa
namespace _999_1錯題罰抄 { class Program { /// <summary> /// 若是作題作錯一道那麼罰抄10次,每錯一道題都罰抄10次 /// /// </summary> /// <param name="args"></param> static void Main(string[] args) { int i = 0; int j = 0; int x = 0; Console.WriteLine("請輸入你作錯題的數量:"); i=Convert.ToInt32(Console.ReadLine()); //x = i; if(i==0) { Console.WriteLine("作得不錯,不用罰抄了!!!"); Console.ReadKey(); } else { while (x < i) { //Console.WriteLine("如今開始抄寫第{0}道題",x+1); while (j < 10) { Console.WriteLine("抄寫第{0}道題的第{1}遍;",x+1,j+1); j++; } j = 0; x++; } Console.ReadKey(); } } } }