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 

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

1 Expert Approved Answer
Step: 1 Unlock

Heres a simple C program that fulfills your requirements include int main ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!