Untitled
unknown
plain_text
10 months ago
225 B
3
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;
}Editor is loading...
Leave a Comment