1.輸入乙個英文單詞順序,反轉句子中單詞的順序,但單詞內字元的順序不變。
例如輸入「i am a student」,輸出"student a am i"
public
static
void
reverse
(string str)
//student a am i
string result="";
for(
int i=
0;i)else
} system.out.
print
(result);}
public
static
void
main
(string[
]args)
2.輸入字串「i am a student.」,乙個空格被替換為2個』#』; 最終結果 i##am##a##student。
public
static
intgetcharcount
(char
ch,char src)
}return count;
}public
static
char
replace
(string sentence,
char src,
int num,
char aim)
i--;}
else
}return ch;
}public
static
void
main
(string[
]args)
3.二維陣列練習。
public
static
void
print********
(int n)
else}}
}for
(int i=
0;i) system.out.
println()
;}}public
static
void
main
(string[
]args)
二維陣列練習
1 建立乙個稱作array2d 的類,在main 方法中宣告乙個稱作twod的變 量,型別為int二維陣列,第一維長度為4。2 建立乙個元素型別為int的陣列,該陣列應包括4 個元素並被賦值到變數twod 0 3 編寫兩個巢狀for 迴圈語句以列印twod 的全部值,以矩陣的格式輸出。4 編譯並執行...
一維陣列與二維陣列題目練習
1620 7 唐大智 2016年10月24日 連續第二十四天總結 內容 a 輸入陣列,定義指標p指向陣列第乙個元素,即p a或p a 0 此刻p i 等同於a i 輸入陣列時,輸出指標所指元素,然後移動指標的位置使其指向下乙個元素。include cout n b 定義3行4行的二維陣列b,元素p指...
C 二維陣列類練習
include include using namespace std class array2 int main cout endl cout next endl array2 b b a for i 0 i 3 i cout endl return 0 首先上面 說明a有乙個私有成員二維陣列 p...