PLEASE USE C++
Posted: Mon Jun 06, 2022 5:24 pm
PLEASE USE C++
CHALLENGE 4.2.2: While loops. ACTIVITY 407946.2092060.qx3zqy7 Jump to level 1 Write a while loop that sums all doubles read from input until the double 1.0 is read. Double 1.0 should not be included in the sum. Ex: If input is 22.0 19.5-10.5 5.5 1.0, then the output is: 36.5 1 #include <iostream> 2 #include <iomanip> 3 using namespace std; 4 5 int main() { 6 double userInput; 7 double doubleSum; doubleSum = 0.0; cin >> userInput; cout << fixed << setprecision (1) << doubleSum << endl; return 0; 2 3 8 9 10 11 12 while() 13 { 14 15 16 17 18 19 Check 1 Next level DD- Feedback?
CHALLENGE 4.2.2: While loops. ACTIVITY 407946.2092060.qx3zqy7 Jump to level 1 Write a while loop that sums all doubles read from input until the double 1.0 is read. Double 1.0 should not be included in the sum. Ex: If input is 22.0 19.5-10.5 5.5 1.0, then the output is: 36.5 1 #include <iostream> 2 #include <iomanip> 3 using namespace std; 4 5 int main() { 6 double userInput; 7 double doubleSum; doubleSum = 0.0; cin >> userInput; cout << fixed << setprecision (1) << doubleSum << endl; return 0; 2 3 8 9 10 11 12 while() 13 { 14 15 16 17 18 19 Check 1 Next level DD- Feedback?