Implement Arrays

Hello, im trying to implement an array into this program. Could you give me an example using the name variable so i'd have a sample for the rest.
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

class Quizdata
{
	private:
		 string  name;
		 double total;
		 int   number;
		 
	public:
		Quizdata(string n){
			setName(n);
			total=number=0;
		}
	
		void setName (string studentName){
			name = studentName;
		}
		string get_name(){
			return name;
		}
		int add_quiz(int, int);
			
		
		
		double get_total_score(){
			return total;
		}
		double get_average_score(){
		    return total/number;
		}
	
};

int Quizdata::add_quiz(int n, int grade)
{
	int quizNum = n;
	int score = grade; 
   

	while ( n!=0){
        cin>> grade;
    if (grade>=10 && grade<=100){
        total +=grade;
        number++;
    	n--;
		}	
	else 
		{
		cout << "Invalid input, score range is from 10 to 100";
		}
	}
}
    	
void printresults(Quizdata);


int main()
{
	const int NUM_STUDENT = 3;
	Quizdata student[NUM_STUDENT];
	string name;
	int quizNum, score, total;
    
    cout << "This program accepts students' name,\n"
         << "number of quizes and their scores.\n"
         << "Quiz scores must be in the range of 10 to 100\n";
	cout << "\nWhat is the students name? ";
    getline(cin, name);
	Quizdata student[name];
    cout << "How many quizes grades would you like to enter? ";
    cin >> quizNum;                                                //why cant move to add_auiz???
    cout << "Enter " << quizNum << " quize grades: "; 
    student.add_quiz(quizNum, score);
	
 printresults(student);


	return 0;
     
     
}


void printresults(Quizdata student)
{
	cout << fixed << showpoint << setprecision(2) << endl;;
    cout << "\nStudent's name is:\t" << student.get_name() <<endl;
    cout << "Student's total is:\t" << student.get_total_score()<< endl;
    cout << "Student's average is:\t" << student.get_average_score()<< endl;
}


//WORKING PROGRAM NO ARRAYS
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

class Quizdata
{
	private:
		 string  name;
		 double total;
		 int   number;
		 
	public:
		Quizdata(string n){
			setName(n);
			total=number=0;
		}
	
		void setName(string studentName){
			name = studentName;
		}
		string get_name(){
			return name;
		}
		int add_quiz(int, int);
			
		
		
		double get_total_score(){
			return total;
		}
		double get_average_score(){
		    return total/number;
		}
	
};

int Quizdata::add_quiz(int n, int grade)
{
	int quizNum = n;
	int score = grade; 
   

	while ( n!=0){
        cin>> grade;
    if (grade>=10 && grade<=100){
        total +=grade;
        number++;
    	n--;
		}	
	else 
		{
		cout << "Invalid input, score range is from 10 to 100";
		}
	}
}
    	
void printresults(Quizdata);


int main()
{
	string name;
	int quizNum, score, total;
    
    cout << "This program accepts students' name,\n"
         << "number of quizes and their scores.\n"
         << "Quiz scores must be in the range of 10 to 100\n";
	cout << "\nWhat is the students name? ";
    getline(cin, name);
	Quizdata student1(name);
    cout << "How many quizes grades would you like to enter? ";
    cin >> quizNum;                                                //why cant move to add_auiz???
    cout << "Enter " << quizNum << " quize grades: "; 
    student1.add_quiz(quizNum, score);
	
 printresults(student1);


	return 0;
     
     
}
void printresults(Quizdata student1)
{
	cout << fixed << showpoint << setprecision(2) << endl;;
    cout << "\nStudent's name is:\t" << student1.get_name() <<endl;
    cout << "Student's total is:\t" << student1.get_total_score()<< endl;
    cout << "Student's average is:\t" << student1.get_average_score()<< endl;
}

Last edited on
1
2
3
4
5
6
7
8
9
10
11
12
const int NUM_NAMES = 5;

string names[NUM_NAMES] = {"name1","name2","name3","name4","name5"};

cout << names[0] << endl; // display name 1
cout << names[1] << endl; // display name 2

for(int i = 0; i < NUM_NAMES; i++)  /// loop through the names
{
     cout << names[i] << endl;
}



Last edited on
Topic archived. No new replies allowed.