Reference no: EM132164305
Using C#
Assuming there are no accidents or delays, the distance that a car travels down an interstate highway can be calculated with the following formula:
Distance = Speed × Time
Create a console application that allows the user to enter a car's speed in miles per hour.
The application should display the following:
• The distance the car will travel in 5 hours
• The distance the car will travel in 8 hours
• The distance the car will travel in 12 hours
Create a console application that allows the user to enter an integer between 1 and 10.
The program should display the Roman numeral version of that number. If the number is outside the range of 1 through 10, the program should display an error message.
The following table lists the Roman numerals for the numbers 1 through 10.
Number Roman Numeral
1 I
2 II
3 III
4 IV
5 V
6 VI
7 VII
8 VIII
9 IX
10 X
Write a program that requests the temperature values for each day of the past week (use integer values.)
Your program should then display the odd values in one line and the even values in the next line. The values should be separated by one space.