Computer Science, asked by adithirao654, 1 month ago

write a algorithm to find the arithmetic operations (+,-,*,/)

plss ans this question this is computer​

Answers

Answered by aslamm1
0

Answer:

prob = input()

if '+' in prob:

   print("Addition")

elif '-' in prob:

   print("Subtraction")

elif '*' in prob:

   print("Multiplication")

else:

   if '/' in prob:

        print("Division")

Explanation:

Similar questions