-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuesNo2.cpp
More file actions
41 lines (33 loc) · 755 Bytes
/
QuesNo2.cpp
File metadata and controls
41 lines (33 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include <string>
//Structure using array..
using namespace std;
struct Student
{
string name;
int age;
float GPA;
};
int main()
{
int numStudent = 5;
Student student[numStudent];
for (int i = 0; i < numStudent; i++)
{
cout << "Student " << i + 1;
cout << "Name:" << endl;
cin >> student[i].name;
cout << "Age: " << endl;
cin >> student[i].age;
cout << "GPA: " << endl;
cin >> student[i].GPA;
}
for (int i = 0; i < numStudent; i++)
{
cout << "Data of student: " << i + 1 << endl;
cout << student[i].name << endl;
cout << student[i].age << endl;
cout << student[i].GPA << endl;
}
return 0;
}