-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
52 lines (36 loc) · 829 Bytes
/
main.cpp
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
#include "DuzaLiczba.h"
#include <iostream>
using namespace std;
int main(){
DuzaLiczba l1;
DuzaLiczba l2(172834);
DuzaLiczba l3("172839023498234792834798237494");
DuzaLiczba l4(l3);
DuzaLiczba l5=l4;
DuzaLiczba l6(-172834);
DuzaLiczba *l7 = new DuzaLiczba("-172839023498234792834798237494");
cin >> l1;
cout << l1 << l2 << l3 << l4 << l5 << l6 << *l7;
delete l7;
l1 = l2;
l1 = l1 + l2 - l3 * l4 / l5;
cout << DuzaLiczba("555183") / DuzaLiczba("1488");
l1 += 23;
l1 += l4;
l2 -= l3;
l3 *= l4;
if(l4 == "23424")
l4 /= l5;
if(l5 != l4) {
l5 = -l5;
cout << l5;
}
l2 = "1221";
DuzaLiczba silnia = 0;
if(l2 >= 0 && l2 < "1223")
{
silnia = !l2;
cout << silnia ;
}
return 0;
}