NALLAMUTHU GOUNDER MAHALINGAM COLLEGE
POLLACHI-642001
N.DHIVYA
BSC COMPUTER SCIENCE(1st year)
12.While Loop
#include <iostream>
int main()
{
int num;
std::cout<<"Enter the number:";
std::cin>>num;
while(num<=5)
{
std::cout<<"The statement is true";
}
return 0;
}
OUTPUT: