Answers for "program to tell if a number is a perfect square"

0

program to tell if a number is a perfect square

import math

# Taking the input from user
number = int(input("Enter the Number"))

root = math.sqrt(number)
if int(root + 0.5) ** 2 == number:
    print(number, "is a perfect square")
else:
    print(number, "is not a perfect square")
Posted by: Guest on September-09-2021

Code answers related to "program to tell if a number is a perfect square"

Python Answers by Framework

Browse Popular Code Answers by Language