write a algorithm to find the arithmetic operations (+,-,*,/)
plss ans this question this is computer
I am requesting plss answer it
Answers
Answered by
1
Answer:
prob = input()
if '+' in prob:
print("Addition")
elif '-' in prob:
print("Subtraction")
elif '*' in prob:
print("Multiplication")
else:
if '/' in prob:
print("Division")
Answered by
0
Explanation:
write a algorithm to find the arithmetic operations (+,-,*,/)
plss ans this question this is computer
I am requesting plss answer it
Attachments:
Similar questions