int number = 6; int total = 100; while (number > 0) { } What is the output of the following code? 18 number -= 3; total
Posted: Fri Jul 01, 2022 5:46 am
int number = 6; int total = 100; while (number > 0) { } What is the output of the following code? 18 number -= 3; total -= number; cout << total; I