我正在研究我的c ++课程的最终项目。说明不明确但在任何一种情况下,我编译了我的代码,但它不会输出任何东西。能否请您查看我的代码,让我知道我错过了什么?以下是她的要求:
此程序将包含try和catch的错误捕获。
在每个获取用户输入的函数中抛出一个抛出,如果输入0的Major,则抛出一个字符串“Bad Major”。输入功能在下面的2,4和7中指定。
按如下方式创建全局结构:
struct Student
{
char Name[30];
float GPA;
int Major;
};
在主要创建该结构的2个实例中。称他们为S1和S2。
创建并调用名为StudentData的函数: S2 =学生数据(S1); //这是对函数的调用 该函数接收对结构的引用作为参数(原型设计将处理此结构),并将返回对结构的引用。使用couts和cins从用户那里获取数据。出于测试目的,更改S1中的数据,使GPA为3.5,Major为2.由于您要使用cins从用户获取数据,您就是用户,只需输入这些值即可。在调用该函数后,S1和S2都将包含相同的数据。
在主要打印中使用cout存储在结构S1和S2中的数据。
使用指向S2的指针作为参数调用名为ChangeData的函数: ChangeData(& S2); //这是对函数的调用 更改S2中的数据,使GPA为3.0,Major为1.(使用这些值进行测试......)
使用cout返回主打印存储在结构S2中的数据。
现在在main中创建一个包含2个结构的数组。调用数组学生。
创建一个函数GetStudents,它将接收数组和一个表示元素数量的int(2)。在函数中,循环遍历数据并使用cin,cin.getline和cout语句从用户获取所有三个字段。像这样组织:
for(...........) { cout提示用户 cin.getline for name cout提示用户 cin for GPA cout提示用户 主要的cin cin.ignore(1); }
问题是,数字值的cin会将ENTER键保留在键盘缓冲区中,对于cin和其他数字,但没有字符串,这是正常的,因此我们必须自行删除它。 cin.ignore应该为我们处理这个问题。
从main调用GetStudents函数。
创建一个函数PrintStudents,它将接收与GetStudents相同的参数。它将打印出两行学生,每位学生一行。
现在这是我的代码:
#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];
}
}
答案 0 :(得分:0)
查看调用函数的语法:
S2 = *studentData(S1);
我相信在没有'*'的情况下调用函数:
S2 = studentData(S1);
您的计划中可能会有更多这样的内容。
在进一步检查您的计划时,功能studentData
会收到Student
变量通过引用传递。这意味着可以直接修改传递给此函数的原始变量。在函数的末尾,返回指向此变量的指针。有点多余。
与changeData()
类似。
此外,根据要求#2 ,函数StudentData
需要返回引用而不是指针。声明如下:
Student& StudentData(Student& any_student);
请注意每个要求的功能拼写。