Simple Calculator Get link Facebook X Pinterest Email Other Apps March 29, 2022 Simple Calculator o=input() f=int(input()) s=int(input()) if(o== "+"): print(f+s) elif(o=="-"): print(f-s) elif(o=="*"): print(f*s) elif(o=="/"): print(f/s) elif(o=="%"): print(f%s) Get link Facebook X Pinterest Email Other Apps Comments
prints triangle if sum of angles is equal to 180 March 28, 2022 prints triangle if sum of angles is equal to 180 f = int(input()) s = int(input()) t = int(input()) if((f+s+t) == 180): print("It's a Triangle") else: print("It's not a Triangle") Read more
coding practice-9 April 05, 2022 write a program to print the sum of the numbers divisible by the given number T from M to N Read more
Comments
Post a Comment