//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);
//