Visual Studio-C#-20160411

來源:互聯網
上載者:User

標籤:

函數的四個要素包括:名稱,輸入,輸出,加工

注釋的方式://只注釋一行;/**/注釋一段地區;

namespace ConsoleApplication6  ---------//命名空間
{

class Program  ---------------------------//類
{
static void Main(string[] args)  -----------//方法,後邊不需要加分號
{
Console.WriteLine("");--------------------//輸出語句,自動換行

Console.Write("");------------------------//輸出語句,不自動換行

string a = Console.ReadLine();-----------//輸入語句

 /*加法器*/

Console.WriteLine("請輸入一個數:");
string a = Console.ReadLine();
Console.WriteLine("請輸入另一個數:");
string b = Console.ReadLine();
Console.WriteLine(a+"+"+b+"="+(int.Parse (a)+int.Parse (b)));

}

}

}

資料類型:

一、基本類型

整型 int  只能放有限位元的整數

      short

      long

浮點型 double  預設小數都是double

         float     如果小數要作為float看待,需要在後面加上f,F尾碼

字元型  char  用單引號,只能放一個字元,逸出字元除外

布爾型  bool  只能放true,false 代碼中只能是小寫,而且不要加引號

二、參考型別

字串  string 雙引號,一個或多個字元組成

 

類型轉換:

1、自動轉換  只要不可能存在資料丟失的情況,都會自動轉換

2、強制轉換  

對於數字在被轉換值得左邊加上小括弧,在小括弧中寫上被轉成的類型。 

對於字串轉成相對應的數值:使用Parse;  int a=int.Parse("字串“);

                                       使用convert;  double d= Convert.ToDouble(s);  

 

逸出字元:

\" 雙引號   \\ 反斜線   \n 換行   \r 斷行符號   \t 水平定位字元

            

Visual Studio-C#-20160411

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.