Answers for "calculator"

953

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

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

calculator

print(2+2)
5
Posted by: Guest on October-08-2021
1

calculator

Use your head
Posted by: Guest on February-21-2021
0

calculator

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

calculator

i need this to cheat in math class...
Posted by: Kaito Yamazaki on September-02-2022

Browse Popular Code Answers by Language