Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

PART A. Write a program Largest that reads three integers from the user and dete

ID: 3550272 • Letter: P

Question

PART A. Write a program Largest that reads three integers from the user and determines the largest value.


PART B. Write a program InOrder that reads three integers from the user and prints the three integers in sorted

order. For example:

Enter three integers: 4 7 3

The integers in sorted order are: 3 4 7

When testing your program, you will want to consider other test cases. Hint: What are all the possible input

orderings?


PART C. Write a program Months that asks the user to enter a month (1 = January, 2 = February, etc.) and then

prints the number of days in that month. For February, print

Explanation / Answer