Programming Homework Help

Programming Homework Help. American InterContinental University Write a Console Program C Programming Task

 

You will write a console program that will generate a random number based on lower and upper range inputs.

  • Create a console program where you will implement variables that are needed for this program and will implement the code within Main and any static methods that are called.
  • The program will take inputs for a range of integer numbers, a low end of the range, and a high end of the range. These two integer numbers will be used to generate a random number that will be displayed.
  • The program will consist of Main and three void methods.
  • The first method will request the low number for the range and the high number in the range. It will then pass the two range numbers to a second method.
  • The second method will take the two numbers passed to it and will generate a random number within the range. It will then pass the two range numbers and the random number to the third method.
  • The third method will take the three numbers passed to it and display them to the console in the format indicated in the sample output below.
  • Main will only have one line of code which will call the first method.
  • The first method will call the second method and the second method will call the third.

You should format your output to look something like the following:

Enter the low integer range number: 1

Enter the high integer range number: 1000

Random number from range 1 and 1000 is 710

Press any key to continue . . .

This will require some analysis of the problem before coding is accomplished.

Submit this challenge to the link provided below.

Programming Homework Help