Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Ex: If the input is: -15 10 the output is: -15 -10 -5 0 5 10 Ex: If the second integer is less than the first as in: 20 5 the output is: Second integer can't be less than the first. For coding simplicity, output a space after every integer, including the last.
The Answer to the Question
is below this banner.
Can't find a solution anywhere?
NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?
Get the Answers Now!You will get a detailed answer to your question or assignment in the shortest time possible.
Here's the Solution to this Question
using namespace std;
int main()
{
int a=0,b=-1,n;
while(a>b)
{
cout<<"\n\tEnter two integers a and b (a<=b) : "; cin>>a>>b;
}
cout<<"\n\t";
for(n=a;n<=b;n=n+5) cout<<n<<" ";
return(0);
}