C++ PROGRAMMING QUESTION PART-1 WITH SOLUTION
C++ PROGRAMMING QUESTION PART-1 WITH SOLUTION
1. Suppose that the input is 25 36 18 16 -1. What is the output of the following code?
int num; int sum; cin >> sum; num = sum; while (num != -1) { cin >> num; sum = sum + num; } cout << "Sum = " << sum << endl;
2. Suppose that the input is 10 -6 12 -5 -4 0. What is the output of the following code?
int num; int sum = 0; cin >> num; while (num != 0) { if (num > 0) sum = sum +…
View On WordPress










