基本数据类型包括:
string System.String Unicode字符序列
decimal System.Decimal 有28位小数的高度精度浮点数
bool System.Boolean true或false
char System.Char 16位Unicode字符
byte System.Byte 8位无符号整型
int System.Int32 32位有符号整型
long System.Int64 64位有符号整型
single(float) System.Single 单精度浮点类型
double System.Double 双精度浮点类型
每个后加; 结束
int a = 1;
bool b =true; 或者flase
double f=1.3; 浮点型
string g ="abc"; 必须加双引号
float h =1.3f; 必须加f f值没意义只是为了区分double
decimal i =1.3m; 常用于经济类
long j =1L; 相当于大int
DateTime dt = new DateTime(); 不放定义一个空的 放年月日
char k='a'; 必须是单引号 是一个字符 单引号内只能放一个字符
byte l =12; 整形 相当于小int
Console.WriteLine(a); 写一个东西进去
Console.ReadLine(); 读一个东西进去
string str =Console.ReadLine(); 定义一个string 读完后返回给string
Console.WriteLine(str); 吧str写进去
Console.ReadLine();