我正在为我的 c++ 课程做最后的项目。说明不清楚,但在任何一种情况下,我都编译了我的代码,但它不会输出任何东西。您能否查看我的代码并让我知道我缺少什么?这是她的要求:
该程序将包括使用 try 和 catch 进行错误捕获。
在每个获取用户输入的函数中放置一个 throw,如果输入的 Major 为 0,则抛出一个字符串“Bad Major”。输入功能在下面的 2、4 和 7 中指定。
创建一个全局结构如下:
struct Student
{
char Name[30];
float GPA;
int Major;
};
在主要创建该结构的 2 个实例。称它们为 S1 和 S2。
创建并调用一个名为 StudentData 的函数: S2 = StudentData( S1 ); //这是对函数的调用该函数接收对结构的引用作为参数(原型将处理此)并将返回对结构的引用。使用 couts 和 cins 从用户那里获取数据。出于测试目的,更改 S1 中的数据,使 GPA 为 3.5,专业为 2。由于您要使用 cins 从用户那里获取数据,因此您是用户,只需输入这些值。调用该函数后,S1 和 S2 都将包含相同的数据。
在主打印中,使用 cout 存储在结构 S1 和 S2 中的数据。
使用指向 S2 的指针作为参数调用名为 ChangeData 的函数: ChangeData( &S2 ); //这是对函数的调用 更改 S2 中的数据,使 GPA 为 3.0,专业为 1。(使用这些值进行测试...)
返回主打印使用 cout 存储在结构 S2 中的数据。
现在在 main.js 中创建一个包含 2 个结构的数组。调用数组学生。
创建一个函数 GetStudents,它将接收数组和一个表示元素数量的 int (2)。在函数中,遍历数据并使用 cin、cin.getline 和 cout 语句从用户那里获取所有三个字段。像这样组织:
for (...........) { cout 提示用户 cin.getline 名称 cout 提示用户 cin GPA cout 提示用户 cin 主要 cin.ignore(1); }
问题是数字值的 cin 会将 ENTER 键留在键盘缓冲区中,这可以用于 cin 和其他数字但不能用于字符串,因此我们必须自己删除它。cin.ignore 应该为我们处理这个问题。
从 main 调用函数 GetStudents。
创建一个函数 PrintStudents,它将接收与 GetStudents 相同的参数。它将在 2 行上打印出学生数组,每个学生 1 行。
现在这是我的代码:
#include<iostream>
#include<iomanip>
using namespace std;
//Global variable to determine size of name
const int Name_Size = 30;
//Structure
struct Student
{
char Name[30];
float GPA;
int Major;
};
//Function Prototypes
Student* studentData(Student &S1);
Student* changeData(Student &S2);
Student getStudent(Student array[], int size);
Student printStudents(Student array[], int size);
int main()
{
Student S1; // structure instance called S1.
Student S2; // structure instance called S2.
Student student[2]; //array of 2 structures.
S2 = *studentData(S1); //Calls the studentData function.
changeData(S2); //Calls the changeData function.
getStudent(&S1, 2); //Calls the getStudent function.
printStudents(&S1, 2); //Calls the printStudents function.
system("pause");
return 0;
}
//Function Definitions
//studentData function
Student* studentData(Student &S1)
{
cout << "Student 1" << endl;
cout << "_________" << endl;
cout << "Name: " << S1.Name << endl;
cout << "GPA: " << S1.GPA << endl;
cout << "Major: " << S1.Major << endl;
cout << endl;
if (S1.Major == 0)
{
throw "Bad Major!\n";
}
else
return &S1;
}
Student* changeData(Student &S2) // Changes the data.
{
cout << "Name: " << S2.Name << endl;
cout << "GPA: " << S2.GPA << endl;
cout << "Major: " << S2.Major << endl;
if (S2.Major == 0)
{
throw "Bad Major!\n";
}
else
return &S2;
}
Student getStudent(Student array[], int size) //Function and loop to receive the array and an int representing the number of elements(2).
{
for (int index = 0; index < size; index++)
{
cout << "Please enter students full name: ";
cin.getline(array[index].Name, 30);
cout << "Please enter students GPA: ";
cin >> array[index].GPA;
cout << "Please enter students major: ";
cin >> array[index].Major;
cin.ignore(1);
}
if (array[1].Major == 0 || array[2].Major == 0)
{
throw "Bad Major!\n";
}
else
return array[size];
}
Student printStudents(Student array[], int size)
{
for (int index = 0; index < size; index++)
{
cout << array[index].Name << " " << array[index].GPA << " " << array[index].Major << endl;
return array[size];
}
}