其他語句2

2022-08-27 20:33:16 字數 1603 閱讀 7500

1.switch - if ...else if...

switch(表示式)

2.while -- for

int i = 0;//變數初化。

while(迴圈條件)

do...while();

foreach(元素型別 變數 in 集合或陣列)

3.鋸齒陣列——陣列的陣列

定義:a.定義陣列的陣列:

int a = new int[3];

b.定義一維陣列:

int b1 = new int[4];

int b2 = new int[3];

int b3 = new int[5];

c.把一維陣列加到陣列的陣列中去

a[0] = b1;

a[1] = b2;

a[2] = b3;

使用:a[行][列] = 。。。

a[行][列]

a.length == ??? 3

a[0].length = ????? 4

4.集合:

(1)鍊錶——每個儲存的值都會分配乙個索引號,通過索引號可對每個元素賦值或取值。

弱型別:

using system.collection;

arraylist list = new arraylist();

強型別:

using system.collection.generic;

list《型別》 list = new list《型別》();

list.clear();

list.add(value);

list.insert(索引號,value);

list.removeat(索引號);

list.count;

(2)雜湊表——每個元素都由兩部分組成,一部分叫key,一部分叫value

弱型別:

using system.collection;

hashtable table = new hashtable();

強型別:

using system.collection.generic;

dictionary《型別,型別》 dic = new dictionary《型別,型別》();

dic.clear();

dic.add(key,value);

dic.remove(key)

dic.count;

5.遞迴——自己調自己 —— 將來可能會用到,但是現在僅做了解。

int add(int a)

void 講故事()

void 找子級資料夾(當前資料夾)

找子級資料夾(當前資料夾下的第乙個子資料夾);

}//猴子吃桃子。

static int taozi(int day) //接收天數,返回這一天的桃子數

int c = (taozi(day+1) + 1) * 2;

return c;

}//程式設計師與富翁:

static double money(int day)

double a = money(day-1) * 2;

return a;

}6.列舉:——結構體。列舉也是我們自己定義的型別。

其他型別語句

分支 switch switch 表示式 案例 string s console.readline switch s 迴圈 while 初始條件 while 迴圈條件 案例 int i 0 while i 10 它是從下面演變過來的 int i 0 for i 10 foreach 一般用來迴圈遍歷...

其他問題2

1.題目 輸入某年某月某日,判斷這一天是這一年的第幾天?public static void print14 int year,int month,int day int daysofyear day if month 1 if month 2 isleapyear year long end sy...

其他幫助命令(2)

1 格式 命令 help 功能 檢視命令的幫助選項,獲取命令選項的幫助 2 shell內部命令幫助 內部命令是不能通過man來獲取幫助的 linux中的命令分委外部命令,內部命令,我們用whereis來區分內部和外部命令,其中內部命令是linux中shell自帶命令,而外部命令是後安裝的目錄下的命令...