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
|
#include <iostream>
using namespace std;
void frame(string name){
char x = '30'; // gives enormous number
int scoreBoard[3][10] = {{1,2,3,4,5,6,7,8,9,10},{1,2,3,4,5,6,7,8,9,10}};
cout << "Frame:\t\t";
for (int i = 0; i < 10; ++i)
cout << scoreBoard[0][i] << " ";
cout << endl;
cout << name << ":";
int scores[10], total = 0;
for (int i = 0; i < 10; ++i){
cin >> scores[i];
total += scores[i];
}
cout << name << " scored a " << total;
}
int main()
{
int scores[10], total = 0;
string name;
cout << "Enter a bowler name: ";
getline(cin, name);
frame(name);
return 0;
}
|