gpt4 book ai didi

c++ - 结构 "Student"C++

转载 作者:太空宇宙 更新时间:2023-11-04 15:44:07 27 4
gpt4 key购买 nike

我正在学习 C++,我需要在 C++ 中创建结构“Student”并使用它(我使用 Microsoft Visual C++ 2010 Express)
我创建了Student.cpp文件

#include "stdafx.h"
using namespace std;

const int num = 5;

struct Student {
char name[30];
int groupNumber;
int progress[num];
};

这是我的程序

#include "stdafx.h"
#include "Student.cpp"
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
setlocale (LC_ALL, "Russian");
srand((unsigned)time(NULL));

int n;
cout << "Введите количество студентов в группе n = ";
cin >> n;

Student * Group = new Student[n];

for (int i = 0; i < n; ++i)
{
cout << "Введите ФИО: ";
cin >> Group[i].name;
Group[i].groupNumber = rand()%5 + 1;
for (int j = 0; j < num; ++j)
{
Group[i].progress[j] = rand()%5 + 2;
}
}

for (int i = 0; i < n; ++i)
{
int sum = 0;
for (int j = 0; j < num; ++j)
{
sum += Group[i].progress[j];
}
double count = (double)sum/5;
if (count < 4) continue;
cout << "\n\n" << Group[i].name << "\nГруппа: " << Group[i].groupNumber << "\nСредний бал: " << count;
}

cout << "\n\n";

delete [] Group;

system("PAUSE");
return 0;
}

但是当我尝试用空格键输入名字时(例如,一个学生的名字和姓氏),我得到了错误,就像我的圈子错过了一步 enter image description here

我尝试使用 string 作为名称

string name

但问题依旧。

出了什么问题以及如何解决?

最佳答案

你的代码有几个问题,但关于你问的问题是因为输入运算符 >>> 读取空格分隔的标记。因此,如果您的句子中有空格(例如空格、制表符、换行符),您只会得到第一个“单词”。

使用std::getline相反。

关于c++ - 结构 "Student"C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19293944/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com