#include<iostream>
using namespace std;
int main()
{
double a;
int b ;
cout<<" Enter Number : ";
cin>>a;
cout<<"Enter the number of repeatation : ";
cin>>b;
for(a=0;a<b+1;a++)
{
cout<<" The number is --> "<<a<<endl;
}
cin.get();
return 0 ;
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)