C#筆記第二周

來源:互聯網
上載者:User

標籤:

 1 namespace ConsoleApplication1 2 { 3     class Program 4     { 5         static void Main(string[] args) 6         { 7             string name = "卡卡西"; 8             string address="火影村"; 9                 string mail="[email protected]";10                 decimal wage = 3000m;11             Console.WriteLine("我叫"+name+",我來自"+address+",我的郵箱是"+mail+",我每個月的工資是"+wage+"。");12             Console.ReadKey();13 14 15 16         }17     }18 }

 decimal  如果希望實數被視為 decimal 類型,請使用尾碼 m 或 M。如果後面沒有加M,當輸入帶有小數點的數位時候,它會被誤認為double類型的,而double可帶小數點。

decimal 用於關於財政金融方面的數字!

 1 namespace ConsoleApplication1 2 { 3     class Program 4     { 5         static void Main(string[] args) 6         { 7             string name = "卡卡西"; 8             string address="火影村"; 9                 string mail="[email protected]";10                 decimal wage = 3000m;11             Console.WriteLine("我叫{0},我來自{1},我的郵箱是{2},我每個月工資是{3}。",name,address,mail,wage);12             Console.ReadKey();13 14 15 16         }17     }18 }

 交換變數的兩種方法

 1 namespace ConsoleApplication1 2 { 3     class Program 4     { 5         static void Main(string[] args) 6         { 7  8             int a = 80; 9             int b = 10;10 11             a = a - b;12             b = b + a;13             a = b - a;14             Console.WriteLine("交換後,a={0},b={1}", a, b);15             Console.ReadKey();16 17 18         }19     }20 }
 1 namespace ConsoleApplication2 2 { 3     class Program 4     { 5         static void Main(string[] args) 6         { 7             int n1 = 10; 8             int n2 = 20; 9             int temp = n1;//建立一個第三方變數,使它等於n1;10 11             n1 = n2;//將n2賦值給n1;12             n2 = temp;//第三方等於n1的值重新賦值給n2;13             Console.WriteLine("n1={0},n2={1}.",n1,n2);14             Console.ReadKey();15             16 17         }18     }19 }

 

使用者資訊的輸入 readline的用法,兼有暫停當前畫面的功能

 1 namespace ConsoleApplication3 2 { 3     class Program 4     { 5         static void Main(string[] args) 6         { 7             Console.WriteLine("你今年多少歲啦?"); 8             string age = Console.ReadLine(); 9 10 11             Console.WriteLine("恭喜你,你今年已經{0}歲啦!", age);12             Console.ReadKey();13         }14     }15 }

 

C#筆記第二周

聯繫我們

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