Untitled

 avatar
unknown
plain_text
2 months ago
225 B
1
Indexable
#include<iostream>
using namespace std;
int main()
 {
  int n;
  cout<<"Enter the number of time:";
  cin>>n;
  int i=1;
  while(i<=n)
   {
     cout<<"this is a statement"<<endl;			
     i=i+1;
   }
return 0;
}
Leave a Comment