小白求助各位大神們 C#while迴圈的用法

來源:互聯網
上載者:User

標籤:

********************************************************************************************

今天老師出了一道這樣的題,要求用C#的while語句寫出下面的代碼

不斷要求使用者輸入一個整數,當使用者輸入end的時候顯示剛才輸入的數字中最大值。

我寫了一個,我感覺沒有什麼問題,但是在輸入end時總是報錯,求解,謝謝

 1             int max=0; 2             string s = ""; 3             while (s!="end") 4             { 5                 Console.WriteLine("請輸入一個數字"); 6                  s = Console.ReadLine(); 7                 int number = Convert.ToInt32(s); 8  9                 if (number > max)10                 {11                     max = number;12                 }13             }14            15             Console.WriteLine(max);


下面又寫了一個就沒有什麼問題了,留下來供各位剛學的同學參考。
 1              int max = 0; 2             while (true) 3             { 4                 Console.WriteLine("請輸入一個數字(結束請輸入end):"); 5                 string s = Console.ReadLine(); 6                 if (s == "end") 7                     break; 8                 int number = Convert.ToInt32(s);            9                 if (number > max)  10                {11                     max = number;12                 }13 14                15             }16 17             Console.WriteLine("剛才你輸入的最大值為{0}", max);18             Console.ReadKey();

 

小白求助各位大神們 C#while迴圈的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.