Computer Science, asked by geethachandrahas10o, 3 months ago

.Write a program to accept one number and

finds to square if number is odd.

Answers

Answered by Anonymous
4

#Python program:

import math

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

if num%2 !=0:

print(math.sqrt(num))

Similar questions