类型 | 示例 |
---|---|
整型(整数类型) | sbyte,byte,short,ushort,int,uint,long,ulong,char |
浮点型 | float,double |
十进制类型 | decimal |
布尔类型 | true,false |
空类型 | 可为空值的数据类型 |
1)声明变量
data_type variable_list;
C# 中变量的名称并不是可以随意定义的。需要遵循如下所示的规则;
- 变量名中可以包含英文字母a-z,A-Z,数字0-9和下划线“_”;
- 变量名中只能以英文字母a-z,A-Z或下划线“_”开头,不能以数字开头;
- 变量名中不允许 使用空格;
- 变量名不能是任何C#中保留字和关键字,例如:char,float,等。
Using System;
namespace _变量
{
class Program
{
static void Main(string[] args)
{
//变量类型 变量名;
// 变量名 = 值;
//100
官方语言:声明或者定义了一个int类型的变量
//int number;//在内存中开辟了一块能够存储整数的空间
官方语言:给这个变量进行赋值
//number = 100;//表示把100存储到了这块空间内
//int n = 3.14;
// double d = 3;
//张三 李四 王五 赵六 abcdefg
//string zsName = "张三";
//string s="";//字符串可以存储 空
字符串 字符 羊肉串和羊肉
//char gender = '男女';
// char c='';
//decimal money = 5000m;
double d = 36.6;
Console.WriteLine(d);
Console.ReadKey();
}
}
}
2)接收用户输入的值
Using System;
namespace _接收用户的值
{
class Program
{
static void Main(string[] args)
{
int a, b;
Console.WriteLine("请输入第一个数字");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入第二个数字");
b= Convert.ToInt32(Console.ReadLine());
Console.WriteLine("第一个数是{0},第二个数是{1}", a, b);
Console.ReadKey();
}
}
}