1、c#注释
//
/**
**/
///
//
2 C#源码的文件格式:
.cs
3 C#输出
Console.WriteLine();
4、运算符
/ 6/4 =1 6/4.0 =1.5
% 6%4=2 6%-4 = -2 -6%4=2
5、变量
变量的命名规则:字母或下划线
double 3x sum de2$f
6、自加自减
i=3
a = i++ // a = 3;i=4
a = ++i // a=4; i=4;
7、条件运算符
{}如果有只有一条语句,有无大括号都是一样的
if(a>b)
WriteLine(a);
else
WriteLine(b);
如果多条语句
int num = 6
if(num<=9)
num+=4;
WriteLine(num);
&& 且,两个条件同时满足
|| 或,两者取其一
8、数据类型
5种
int double decimal
string char
9 switch
case 1:{
case 2:
WriteLine(a);
break;
10 循环结构
while(){
}
do{
}while();
for(int i=0;i<10;i++){
}
break contiune
三种跳转语句:break,contiune,return
11 数组
int[] arr = {};
int[] arr = new int[]{}
string [] names ={"张三","李四"}; names[1]
.Length
12 winform
name:
text: