Computer Science, asked by adithirao654, 1 month ago

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


plss ans this question this is computer
I am requesting plss answer it​

Answers

Answered by AnushGudimetla
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 dineshpathak1981
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