I am an ISC student and I want the computer project with algorithm ASAP. please help and link your project since I have seen everything online. I want the 2017 or 2018 project plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz help
Answers
Answered by
57
Answer:
Okay if you want to make a new project, I think calculator is the best option for you in your computer science project. Please make a project by using python3.
Explanation:
By writing this programming in a pydroid application, to get a systematic calculator
print("Python calculator of 2 numbers ")
while True:
a=int(input(""))
operation=input("")
b=int(input(""))
if operation=="+":
print("=")
print(a+b)
elif operation=="-":
print("=")
print(a-b)
elif operation=="*":
print("=")
print(a*b)
elif operation=="/":
print("=")
print(a/b)
else :
print("ERROR"*100)
break
Similar questions