Computer Science, asked by ebitisme96, 9 months ago

3.6 code awnser pls write your code

Answers

Answered by eburcham58
2

Answer:

a = int(input("Enter a number: "))

print("Largest: " + str(a))

b = int(input("Enter a number: "))

print("Largest: " + str(max(a,b)))

c = int(input("Enter a number: "))

print("Largest: " + str(max(a,b,c)))

d = int(input("Enter a number: "))

print("Largest: " + str(max(a,b,c,d)))

e = int(input("Enter a number: "))

print("Largest: " + str(max(a,b,c,d,e)))

f = int(input("Enter a number: "))

print("Largest: " + str(max(a,b,c,d,e,f)))

Explanation:

Answered by rk2250297
0

Explanation:

gpa is 3.3 * 80-83, gpa is 3 * 77-79 , gpa is 2.7 * 74-76 , gpa is 2.3 * 70-73, gpa is 2 * 67-69 , gpa is 1.7 * 64-66 , gpa is 1.3 * 60-63 , gpa is 1 * less than 60 is 0 "

Your task is to create a report for similar to the one below. You should make sure that you get the student to input the data for lines 1, 2, 4, 5, 6, 7, 8, 9, 10 & 11.

You then need to get the computer to convert the scores accurately into GPA

Similar questions