Answer to Question #305312 in C++ for Program Training

Question #305312

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.



1
Expert's answer
2022-03-03T09:59:59-0500
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);
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog