C#學習筆記(二)運算子 乘方 判斷語句 迴圈語句 比較子 邏輯運算子 數組

來源:互聯網
上載者:User

第七節
%求餘
^乘方
第八節 運算子的簡化 自增 自減
x++ ++x
放空~

第九節 乘方

^符號的錯誤 沒有\這個符號

第十節 判斷語句

if else 語句

if(){}
else if(){}
else{}

int caseSwitch=6;
swich(caseSwitch){
case1:

break;
}

第十一節 迴圈語句
1.while(條件){語句;}

2.for 迴圈

3.do {語句} while(條件) //至少執行一遍

第十二講 比較子

比較子是有結果的

第十三講 邏輯運算子

邏輯運算子的運算對象只有true和false
運算結果也只有true和false

邏輯運算子的優先順序 ! && || 小括弧可以改變優先順序

isNumber作用是判斷字串是不是數字
isNumber(“12jdj”)=false
isNumber(“26”)=true

第十四講 數組

什麼是數組?例如:
int[] numbers;//聲明int類型的數組
numbers=new int[];//建立並聲明大小
numbers={1,2,3,4};//賦值
int num=numbers[0];

2.string[] theStrings; //聲明string型的數組
theStrings=new string[]; //建立
theStrings=new string[20]; //改變大小

數組的聲明初始化
不規則
string[] names={"sdf","sdf","fdfd"};
string[] names=new string[]{"sdf","sdf","fdfd"};

數組的索引
string[] theStrings; //聲明string型的數組
theStrings=new string[10]; //建立,並聲明大小

theStrings[0]="鵬哥"; //給第一個元素賦值
引用數組的大小:theString.Length

數組的遍曆

string[] list={"sdf","sdf","fdfd"};

foreach(string str in list)
{
console.WriteLine(str);
}

foreach安全高效

多維陣列(二維數組)

int[,] arr={{1,2},{1,3},{1,4},}

交錯的數組
int[][] numbers=new int [2] [];
numbers={new int[] {3,4},new int[] {6,4}}
交錯的數組就是數組的數組

代碼:

/*
int x = 5; //第七節 加法
x = x + 1;
this.textBox1.Text = x.ToString();
//*/
/*
int x = 9; //取餘
int y = x % 3;
this.textBox1.Text = y.ToString();
//*/

/*
//第八節 區別
int x = 5;
int b = ++x;
this.textBox1.Text = b.ToString();
//*/

/*
int x = 5;
int b = x++;
this.textBox1.Text = b.ToString();
//*/

/*
int x = 4 ^ 3; //第九節 出現錯誤4的3次方是7 2的三次方是1 這是怎麼回事?
this.textBox1.Text = x.ToString();
//*/
/*
int x = 5 / 2;
this.textBox1.Text = x.ToString();
//*/
/*
int x = 5 \ 2; 不存在
this.textBox1.Text = x.ToString();
//*/

/*
int x = -1; //x可以通過文字框接受一個資料;
int y = 0; //y用於記錄運算結果;
if (x >= 2) {
y = x - 1;
}
else {
y = 2 * x + 3;
}
this.textBox1.Text = y.ToString();
//*/

/*
int x = 3; //x可以通過文字框接受一個資料; 第十講
int y = 0; //y用於記錄運算結果;
if (x >= 2) {
y = x - 1;
}
if (x < 2) {
y = 2 * x + 3;
}
this.textBox1.Text = y.ToString();
//*/

/*
int i = 0; //第十一講
while (i < 5) {
this.textBox1.Text = this.textBox1.Text + "\r\n" + i.ToString();
i++;
}
//*/
/*
for (int i = 0; i <= 3; i++) {
this.textBox1.Text = this.textBox1.Text + "\r\n" + i.ToString();
}
//*/
/*
bool theBoolean = 5 > 3; //第十二講
this.textBox1.Text = theBoolean.ToString();
//ToString()是將true轉化為“”
//*/

/*
int x = 20; //第十三講
if (x > -1 && x < 2) {
this.textBox1.Text = "變數x在區間-1和2中";
}
else {
this.textBox1.Text = "變數x不再區間中";
}
//*/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.