標籤:
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#筆記第二周