#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char s[8][30]={
"CS0160資訊安全實習,丙",
"CS0160資訊安全實習,甲",
"GE0105A勞作教育,丙",
"IM0007程式設計,丙",
"IM0068統計學[二],甲",
"IM0164資訊安全實習,丙",
"OHA001導師,丙",
"OHTA003在校輔導時間,乙"
};
for (int i=0; i<8; i++)
cout<<i<<"\t"<<s[i]<<endl;
system("Pause");
return 0;
}
herrDeng網內搜尋
自訂搜尋
Ads
2009年4月7日 星期二
字串陣列
熱門文章
-
計算你上學期加權平均
-
33, 45, 87, 99, 27 算平均
-
用 while loop 算 s=3*3+4*4+....88*88
-
輸出課表代碼矩陣 Hint: 2-D array, double-for loop
-
問int怎麼存-689這個數字。 int用4個bytes。 答案請用16進位表達。
-
請用格式化輸出排 9x9乘法表 hint: double-for, "%nd"
-
產生10個0~99的亂數存在a[10] 中
-
列舉對稱、非對稱密碼各三種。