0
Looping
how do I write a program to accept any integer value and output the consecutive 3 integers using a while do loop
1 Answer
+ 4
You don't need a loop to do that, but still if you say so...
int start, end;
cin>>start;
end = start+3;
do{
cout<<++start<<endl;
}while(start < end);