- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- srand(time(NULL));
- int n[3][4];
- cout<<"座號\t國文\t數學\t社會\t自然\n===============================\n";
- for(int i=0;i<=2;i++){
- for(int j=0;j<=3;j++){
- n[i][j]=rand()%101;
- }
- }
- for(int i=0;i<=2;i++){
- cout<<i+1<<"號\t";
- for(int j=0;j<=3;j++){
- cout<<n[i][j]<<"\t";
- }
- cout<<"\n";
- }
- system("pause");
- return 0;
- }
複製代碼 |