Question: Write a C++ program. Use a do-while loop that takes in positive integer numbers between 1 and 100. Break out of the loop when
Write a C++ program. Use a do-while loop that takes in positive integer numbers between 1 and 100. Break out of the loop when enters -1. Output the count of numbers greater than or equal to 50. Enter the number: 6 Enter the number: 61 Enter the number: -4 Enter the number: 5 Enter the number: 50 Enter the number: 89 Enter the number: -1 you entered 3 nos >= 50. Solution:
Step by Step Solution
3.40 Rating (163 Votes )
There are 3 Steps involved in it
Heres a simple C program that fulfills your requirements include int main ... View full answer
Get step-by-step solutions from verified subject matter experts
