Write a program that outputs all integers within a range. The program takes three integer inputs. The first two integers are the low and high integers of the range. The third integer indicates whether the range is inclusive or exclusive: 0 excludes the low and high integers, and 1 includes the low and high integers. Assume the first two integers are never the same. You are required to use a For loop. Ex: If the input is 5 10 1, the output is: 5 6 7 8 9 10 Ex: If the input is 5 10 0, the output is: 6 7 8 9 Ex: If the input is 6 7 1 6 7 Ex: If the input is 6 7 0 No output. Ex: If the second integer is less than the first, as in 20 5 1, the output is: No output. For coding simplicity, output a space after every integer, including the last. please write it in c++
Write a program that outputs all integers within a range. The program takes three integer inputs. The first two integers are the low and high integers of the range. The third integer indicates whether the range is inclusive or exclusive: 0 excludes the low and high integers, and 1 includes the low and high integers. Assume the first two integers are never the same. You are required to use a For loop.
Ex: If the input is 5 10 1, the output is:
5 6 7 8 9 10Ex: If the input is 5 10 0, the output is:
6 7 8 9Ex: If the input is 6 7 1
6 7Ex: If the input is 6 7 0
No output.Ex: If the second integer is less than the first, as in 20 5 1, the output is:
No output.For coding simplicity, output a space after every integer, including the last.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 6 images