第一天學習C#
//Main函數——>編譯-->運行
//註釋的內容不會進行編譯,也不會被執行
//單行註釋
/*
多行註釋
Console.WriteLine ("Hello World!");
*/
//基本數據類型
//一個字節等於8個二進位
//常量
//變量
/*
*
*/
// char b = ‘0‘;
// short d = 30;
// float c;
// double e = 2.1234f;
// Console.WriteLine ("*****");
// Console.WriteLine (" ***");
// Console.WriteLine (" *");
//
// Console.ReadKey ();//讀取字符,字符存在KeyChar屬性中
// int a = Console.Read();c//讀取字符ascii碼
// Console.WriteLine (a);
// Console.ReadLine ();//讀取字符串
// char c = Console.ReadKey().KeyChar;
// Console.WriteLine (c);