O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
#WAP to compute the result when two numbers and one operator is given by user. a=int(input("Enter 1st number : ")) b=int(input("Enter 2nd number : ")) c=input("Enter the Operator +,-,*,/ : ") if c=='+': print("The Result is : ",a+b) elif c=='-': print("The Result is : ",a-b) elif c=='*': print("The Result is : ",a*b) elif c=='/': print("The Result is : ",a/b) else: print("Wrong Operator Entered")
▶ Run Code
🖥 Output: