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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started