#include <iostream>
using namespace std;
int main(void) {
  int winnings[100] = {
    1,3,2,4,5,7,6,8,9,11,
    100,13,0,14,16,17,3,18,20,10,
    12,8,15,14,5,17,19,18,1,9,5,
    10,13,11,14,16,22,0,18,20,3,
    99,13,15,14,22,17,19,0,23,2,
    12,13,15,22,16,17,56,18,44,99,
    2,13,22,14,16,89,19,69,101,34,
    12,22,15,14,78,17,69,18,2,33,
    4,13,77,7,10,17,19,91,4,22,
    12,98,15,14,15,17,19,18,7
  };
  // TODO: Compute and print the sum of all the winnings here
  return 0;
}
#include <iostream>
using namespace std;
int main(void)Â
{
int winnings[100] = {
1,3,2,4,5,7,6,8,9,11,
100,13,0,14,16,17,3,18,20,10,
12,8,15,14,5,17,19,18,1,9,5,
10,13,11,14,16,22,0,18,20,3,
99,13,15,14,22,17,19,0,23,2,
12,13,15,22,16,17,56,18,44,99,
2,13,22,14,16,89,19,69,101,34,
12,22,15,14,78,17,69,18,2,33,
4,13,77,7,10,17,19,91,4,22,
12,98,15,14,15,17,19,18,7};
long int sum = 0;
for (int i = 0; i < 100; i++)
{
sum += winnings[i];
}
cout << "The sum of all the winnings is " << sum;
return 0;
}
Comments
Leave a comment