Computer Science, asked by eburcham58, 10 months ago

3.3 Code Practice: Question 1 and 2?
on edhesive for computer science please give me the answers this is worth 50 points

Answers

Answered by Anonymous
0

Explanation:

An interactive introductory course for students brand new to programming that ... Unit 1: Beginning in Computer Science ... Term 2. Unit 6: For Loops. Unit 7: Text and String Processing

Answered by Anonymous
0

 \huge {\underline {\underline {\mathfrak {\red {Answer}}}}}

h = int(input("Enter the hour: "))m = int(input("Enter the minute: "))total = h * 60 + m + 15h = int(total / 60)m = total % 60print("Hours: " + str(h))print("Minutes: " + str(m))

Similar questions