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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!