Question: Convert Python to Java code and compare the concept such as; Input Output Comments Variable Loop Array Method Print Statement def getanswer(temperature): print(Highest temperature:,max(temperature))#returning maximum
Convert Python to Java code and compare the concept such as;
| Input |
| Output |
| Comments |
| Variable |
| Loop |
| Array |
| Method |
| Print Statement |
def getanswer(temperature): print("Highest temperature:",max(temperature))#returning maximum in the temperature list. print("Lowest temperature:",min(temperature)) #returning minimum in the temperature list. print("Average temperature:",sum(temperature)/len(temperature)) #returning sum of all temperatures in the temperature list. if __name__=='__main__': temperature=[] num = 7 for i in range(num): temperature.append(int(input())) getanswer(temperature)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
