-
Notifications
You must be signed in to change notification settings - Fork 0
/
LAB2.py
65 lines (51 loc) · 1.5 KB
/
LAB2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# import only system from os
from os import system, name
# import sleep to show output for some time period
from time import sleep
# define our clear function
def clear():
# for windows
if name == 'nt':
_ = system('cls')
# for mac and linux(here, os.name is 'posix')
else:
_ = system('clear')
def czyszczenie():
# sleep for 2 seconds after printing output
sleep(2)
# now call function we defined above
clear()
while(True):
print("1. Dodawanie")
print("2. Odejmowanie")
print("3. Mnozenie")
print("4. Dzielenie")
print("0. Wyjdz")
wybor=int(input("Wybierz dzialanie lub wyjscie: "))
if wybor==1:
x=float(input("Pierwsza liczba: "))
y=float(input("Druga liczba: "))
print(x, "+", y,"=", (x+y))
czyszczenie()
elif wybor==2:
x=float(input("Pierwsza liczba, odjemna: "))
y=float(input("Druga liczba, odjemnik: "))
print(x, "-", y,"=", (x-y))
czyszczenie()
elif wybor==3:
x=float(input("Pierwsza liczba: "))
y=float(input("Druga liczba: "))
print(x, "*", y,"=", (x*y))
czyszczenie()
elif wybor==4:
x=float(input("Pierwsza liczba, dzielna: "))
y=float(input("Druga liczba, dzielnik: "))
print(x, "/", y,"=", (x/y))
czyszczenie()
elif wybor==0:
exit=input("Czy napewno chcesz wyjsc? Y/N ")
if exit=="Y"or exit=="y":
czyszczenie()
break
else:
print("Nie ma takiej pozycji w menu")