Download Repetition1 - UCL Computer Science

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the work of artificial intelligence, which forms the content of this project

Document related concepts

Law of large numbers wikipedia , lookup

Addition wikipedia , lookup

Mathematics of radio engineering wikipedia , lookup

Elementary mathematics wikipedia , lookup

Location arithmetic wikipedia , lookup

Transcript
Running Totals
total = 0;
count =0
while (count <4) {
cout << “Enter a number: “;
cin >> num;
count++;
total = total + num;
cout << “The total is “ << total;
}
cout << “Grand total is “ << total << endl;