forked from Skelett/is12-programmeerimise_algkursus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValemid.py
40 lines (38 loc) · 773 Bytes
/
Valemid.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
x=15
print pow(x,2)
print"________________________________________________"
y=20
print x*y
print"________________________________________________"
print (x*y)/2
print"________________________________________________"
a=5
b=6
c=9
print a*b*c
print"________________________________________________"
import math
d=(a**2)+(b**2)
print math.sqrt(d)
print"________________________________________________"
e=36
print math.sqrt(e)
print"________________________________________________"
f=7
g=pow(f,3)
print g
print"________________________________________________"
i=5
j=20
print math.pi*i*i*j
print"________________________________________________"
k=4
l=8
print math.pi*k*l
print"________________________________________________"
A=2100
B=0.1
t1=-15
t2=0
T=t2-t1
print A*B*T