標題:
陣列宣告(一)
[打印本頁]
作者:
周政輝
時間:
2017-7-4 17:26
標題:
陣列宣告(一)
試著宣告一個數值陣列 並輸出在螢幕上
作者:
巫沛庭
時間:
2017-7-4 17:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num[10];
num[0]=8;
num[1]=18;
cout<<num[0]<<endl;
system("pause");
return 0;
}
作者:
張閎鈞
時間:
2017-7-4 17:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int mmm[10];
mmm[0]=1;
mmm[1]=2;
cout<<mmm[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-7-4 17:29
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int num[10];
num[0]=1;
num[1]=2;
cout<<num[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
巫晉宇
時間:
2017-7-4 17:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num [10];
num [0]=1;
num [1]=2;
cout<< num [0]<<endl;
system("pause");
return 0;
}
作者:
張凱婷
時間:
2017-7-4 17:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int Q[10];
Q[0]=1;
Q[1]=2;
cout<<Q[0]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏羽彤
時間:
2017-7-4 17:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num [10];
num [0]=0;
num [1]=1;
num [2]=2;
num [3]=3;
num [4]=4;
num [5]=5;
num [6]=6;
num [7]=7;
num [8]=8;
num [9]=9;
cout << num [0] << num [1] << num [2] << num [3] << num [4] << num [5] << num [6] << num [7] << num [8] << num [9] << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2