xt7-4.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:1k
- #include <iostream>
- #include <iomanip>
- using namespace std;
- const int n=5;
- struct student
- { char num[6];
- char name[8];
- int score[4];
- }stu[n];
- int main()
- {void input(student stu[]);
- void print(student stu[]);
- input(stu);
- print(stu);
- return 0;
- }
- void input(student stu[])
- {int i,j;
- for (i=0;i<n;i++)
- {cout<<"input scores of student "<<i+1<<":"<<endl;
- cout<<"NO.: ";
- cin>>stu[i].num;
- cout<<"name: ";
- cin>>stu[i].name;
- for (j=0;j<3;j++)
- {cout<<"score "<<j+1<<":";
- cin>>stu[i].score[j];
- }
- }
- }
- void print(student stu[])
- {int i,j;
- cout<<" NO. name score1 score2 score3"<<endl;
- for (i=0;i<n;i++)
- {cout<<stu[i].num<<" "<<setw(10)<<stu[i].name<<" ";
- for (j=0;j<3;j++)
- cout<<setw(3)<<stu[i].score[j]<<" ";
- cout<<endl;
- }
- }
-