1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| #include <bits/stdc++.h> using namespace std; struct student{ string name; int h,w; }; int main() { student stu[10]; for(int i=0;i<10;i++){ cin>>stu[i].name>>stu[i].h>>stu[i].w; } for(int i=0;i<10;i++){ cout<<fixed<<setw(4)<<stu[i].name<<" "<<stu[i].h<<" "<<stu[i].w<<"\n"; } return 0; }
|