Answers for "calculator"

956

calculator

upvote if you feel terrible
Posted by: Guest on June-04-2020
4

calculator

yaaa sooo u want a calculator?
Posted by: Guest on June-23-2021
2

calculator

class calc:
  def __init__(self,num):
    self.num = num
  def __add__(self,other):
    #inner code
  def __mul__(self, other):
    #inner code
  def __sub__(self, other):
    #inner code
  def __div__(self,other):
    #inner code
  # and so on for features
Posted by: Guest on October-12-2020
11

calculator

Are you cheating in math class again?
Posted by: Guest on March-08-2021
8

calculator

x = input("first number")
y = input("second number")
z = input("do you want to multiply, minus, divide or add? (x,-,/,+)")

y = int(y)
x = int(x)

if z == "+":
    print (x + y)

if z == "/":
    print (x / y)

if z == "x":
    print (x * y)

if z == "-":
    print (x - y)

else:
    print("use x,-,/ or + next time!")
Posted by: Guest on June-04-2020
2

calculator

dont cheat
Posted by: Guest on April-07-2021
0

calculator

shut up my teacher's useless
Posted by: Guest on September-15-2021
0

calculator

A calculator is a device that helps you calculate math problems.
Posted by: Guest on June-05-2021
2

calculator

click pi and play the game.
Posted by: Guest on April-12-2021
0

calculator

use your mobile for calcularion!
Posted by: Guest on July-06-2021

Browse Popular Code Answers by Language