解题思路:
注意事项:
参考代码:
#include<iostream> #include<string> using namespace std; //创建学生结构体 struct Student { string Id; string Name; int Ane_score; int Two_score; int Three_score; }; //用于输入学生数据 void input(Student student[],int N) { int i; for(i=0;i<N;i++) { cin>>student[i].Id; cin>>student[i].Name; cin>>student[i].Ane_score; cin>>student[i].Two_score; cin>>student[i].Three_score; } } //用于输出学生的数据 void print(Student student[],int N) { int i; for(i=0;i<N;i++) { cout<<student[i].Id<<"," <<student[i].Name<<"," <<student[i].Ane_score<<"," <<student[i].Two_score<<"," <<student[i].Three_score<<endl; } } int main() { int N; cin>>N; Student student[N]; input(student,N); print(student,N); return 0; }
0.0分
1 人评分
最长单词 (C语言代码)浏览:1482 |
求圆的面积 (C语言代码)浏览:1367 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:1432 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:504 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1186 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
WU-printf基础练习2 (C++代码)浏览:2061 |
蛇行矩阵 (C语言代码)浏览:560 |
单词个数统计 (C语言代码)浏览:1046 |
简单的a+b (C语言代码)浏览:542 |