1. 程式人生 > >黑馬程式設計師之C#程式設計基礎學習筆記:不斷要求使用者輸入一個數字,然後列印這個數字的二倍,當用戶輸入q的時候程式退出。

黑馬程式設計師之C#程式設計基礎學習筆記:不斷要求使用者輸入一個數字,然後列印這個數字的二倍,當用戶輸入q的時候程式退出。

--------------------------------------------------- 2345王牌技術員聯盟2345王牌技術員聯盟、期待與您交流!---------------------------------------------------------

方法1:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test11
{
      calss Program
      {
            static void Main(string[] args)
            {
                    //不斷要求使用者輸入一個數字,然後列印這個數字的二倍,當用戶輸入q的時候程式退出。
                    Console.WriteLine("請輸入一個數字");
                    string s= Console.ReadLine();
                    while(s!= "q")
                    {
                          int number = Convert.ToInt32(s);
                          Console.WriteLine("{0}",number*2);
                    }
            }
      }

}

方法2:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test11
{
      calss Program
      {
            static void Main(string[] args)
            {
                    //不斷要求使用者輸入一個數字,然後列印這個數字的二倍,當用戶輸入q的時候程式退出。
                    Console.WriteLine("請輸入一個數字");
                    string s= Console.ReadLine();
                    if(s!= "q")
                        return;//執行到return的時候退出整個函式(Main),而控制檯程式一旦Main退出,程式就退出了
                    int number = Convert.ToInt32(s);
                    Console.WriteLine("{0}",number*2);
                   
            }
      }

}

--------------------------------------------------- 2345王牌技術員聯盟2345王牌技術員聯盟、期待與您交流!---------------------------------------------------------