Due: Friday, October 8
Detailed instructions on handing in assignments will be added to the course Web page soon. Make sure to read the programming standards and course ethics material before attempting the assignment
Program to convert number of feet into different units. Please enter the number of feet> 20 Conversion Table ---------------- 20' = 6.67 yards 20' = 240.00" 20' = 609.60 cm 20' = 6.10 m
convert.cpp
You do not need to take into account situations where the second time is smaller than the first time. You should state this requirement to the user. Your test input should not contain leading zeroes, that is type 530, not 0530.
Program to determine the difference between two time values. Enter times using military format with no spaces or colons between the hours and minutes (i.e. 1730, not 17 30 or 17:30). Enter first time: 900 Enter second time: 1750 The difference is 8 hours and 50 minutes.
diff.cpp