Real Time Example Program of While Loop

Definition of While Loop:
  • Repeats a block of code as long as a specified condition is true.


Real Time Examples program for While Loop :

Question 1: Using while loop to print the count from 1 to 5.


Program :



Output :






Question 2 : Print a number from 1 to 5 using while loop.

Program :




Output :





Question 3: write a loop statement to print the following series 10,20,30,40,50,60,....200

Program :



Output :





Question 4 : Write a program to print first 10 natural numbers in reverse order.

Program :




Output :





Question 5 : Write a program to find the factorial of a number 

Program :





Output :



Post a Comment

0 Comments