完善 int a,b; vector<_0843杨晓慧>::iterator p=i.v.begin(); cout<<"学号按1,姓名请按2."; cin>>a; if(a==1){cout<<"输入学号:"; } if(a==2){cout<<"输入要姓名:";} cin >> b; if(b==p->num[N]||b==p->name){cout<< setiosflags(ios::left)<<setw(12)<<p->num[N]<<setw(
时间: 2023-12-11 14:03:20 浏览: 96
2022年Java源码分析:深入探讨Iterator模式Java教程.docx
12)<<p->name<<setw(8)<<p->score[0]<<setw(8)<<p->score[1]<<setw(8)<<p->score[2]<<setw(8)<<p->score[3]<<endl; }
这段代码中存在一些问题,比如变量a,b未进行初始化,未定义N的值等等。建议修改后的完整代码如下:
```c++
#include <iostream>
#include <vector>
#include <iomanip>
using namespace std;
struct _0843杨晓慧 {
string num[20];
string name;
int score[4];
};
int main() {
int a = 0, b = 0;
vector<_0843杨晓慧> i(1);
vector<_0843杨晓慧>::iterator p = i.begin();
cout << "学号按1,姓名请按2: ";
cin >> a;
if (a == 1) {
cout << "输入学号: ";
cin >> p->num[0];
}
else if (a == 2) {
cout << "输入要姓名: ";
cin >> p->name;
}
cout << "输入要查询的成绩: ";
cin >> b;
if (b == stoi(p->num[0]) || b == p->name) {
cout << setiosflags(ios::left) << setw(12) << p->num[0] << setw(12) << p->name << setw(8) << p->score[0] << setw(8) << p->score[1] << setw(8) << p->score[2] << setw(8) << p->score[3] << endl;
}
return 0;
}
```
阅读全文