Survey
* Your assessment is very important for improving the work of artificial intelligence, which forms the content of this project
* Your assessment is very important for improving the work of artificial intelligence, which forms the content of this project
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;