#include<iostream>
using namespace std;
int main()
{
int n,i;
cout <<"Enter Number: ";
cin>>n;
i=1;
while(i<=n)
{
cout <<"Show: "<<i<<endl;
i++;
}
return 0;
}
Tuesday, May 30, 2017
Do While Show
For Loop Show
Subscribe to:
Posts (Atom)