Write python code to input the degree measure of an angle and determine in which quadrant does the angle lie.
Answers
Answered by
1
Explanation:
x = int(input("enter angle"))
if x>=0 and x<=90:
"first quadrant
elif x<=90 and x>=180:
"second quad"
elif x<=180 and x>=270:
"third quadrant"
else:
"four quadrant"
Similar questions