ok i have to make a program that asks the user to enter how many kid are in their class, the ask the score for each kid, then display how many are passing. (70/100 is passing). im not sure how to make it count how many times the number 70+ was entered. anyone know how? this is what i have so far.
#include <iostream>
using namespace std;
int kids;
int pass;
int score;
int main()
{
cout << "Enter number of students: ";
cin >> kids;
for (int count = 1; count <= kids; count++)
{
cout << "What was student " << count << "s score? ";
cin >> score;
}
system("PAUSE");
return 0;
}