解题思路:
注意事项:
参考代码:
#include<iostream>
using namespace std;
struct student{
string id;
string name;
int a;
int b;
int c;
};
void input(int n,struct student stu[]);
void print(int n,struct student stu[]);
int main()
{
int n;
struct student stu[100];
cin>>n;
input(n,stu);
print(n,stu);
return 0;
}
void input(int n,struct student stu[])
{
for(int i=0;i<n;i++){
cin>>stu[i].id>>stu[i].name>>stu[i].a>>stu[i].b>>stu[i].c;
}
}
void print(int n,struct student stu[])
{
for(int i=0;i<n;i++){
cout<<stu[i].id<<","<<stu[i].name<<","<<stu[i].a<<
","<<stu[i].b<<","<<stu[i].c<<endl;
}
}
0.0分
0 人评分
【出圈】 (C语言代码)用单项循环链表浏览:841 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:781 |
最小公倍数 (C语言代码)浏览:894 |
WU-printf基础练习2 (C++代码)浏览:2061 |
printf基础练习2 (C语言代码)浏览:796 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:2121 |
a+b浏览:452 |
打印十字图 (C语言代码)浏览:2822 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:724 |
钟神赛车 (C语言代码)浏览:665 |