Computer Science

Write a program that asks the user for two numbers and prints Close if the numbers are within .001 of each other and Not close otherwise.

Python

Python Control Flow

38 Likes

Answer

a = float(input("Enter first number: "))
b = float(input("Enter second number: "))

d = 0
if a > b :
    d = a - b
else : 
    d = b - a

if d <= 0.001 :
    print("Close")
else :
    print("Not Close")

Output

Enter first number: 10.12345
Enter second number: 10.12354
Close

Answered By

18 Likes


Related Questions