InterviewSolution
Saved Bookmarks
| 1. |
Write an algorithm to find the remainder of three numbers |
|
Answer» a = int(INPUT("Enter the first NUMBER: "))b = int(input("Enter the SECOND number: "))PRINT(a / b) # prints the QUOTIENT of a divided by bprint(a % b) # prints the remainder of a divided by b |
|