I got an assignment today : 2) ch4ex8.cpp Write a C++ program that sums the integers from 1 to 50 (so that is, 1+2+3+4+...+49+50) and displays the result.
I have been working on this program 2 nights running now. I can't quite figure out how to go about it. I originally had a "for" loop:
1 2 3 4 5 6 7 8 9 10 11
void main(void)
{
int counter;
int total;
for(counter = 0; counter < 51; counter++)
{
total = counter + counter++;
}
cout << total;
}
You don't need an array. This problem is extremely trivial. Your code is more complex than it needs to be.
1. initialize total (set it to 0 so that it doesn't contain garbage.
2. for counter = 1 to 50
3. total = total + counter.
#include <iostream>
usingnamespace std;
int main()
{
int counter = 1;
int total = 0;
while (counter < 50)
{
total += counter;
++counter;
}
cout << total << endl;
return 0;
}