Write a program that reads in five integers and determines and prints the largest and the smallest integers in the group. Use only the programming techniques you learned in this chapter
Write a program that reads in five integers and determines and prints the largest and the smallest integers in the group. Use only the programming techniques you learned in this chapter
A line that contains five integers
Prints the largest and the smallest integers in the group
输入
512 214 313 121 61
输出
Largest is 512 Smallest is 61