-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzad5.cpp
93 lines (75 loc) · 1.95 KB
/
zad5.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include<iostream>
using namespace std;
int main(){
int x;
cin >> x;
switch (x)
{
case 1: {
int x;
cin >> x;
unsigned int mask = 0x80000000;
bool first = false;
for(int i=0; i<32; ++i){
int mask_y = mask bitand x;
if(mask_y){
first = true;
cout << '1';
}
else if(first and (not mask_y)){
cout << '0';
}
mask= mask >> 1;
}
break;
}
case 2:{
int x;
int l1=0, l2=0;
cin >> x;
unsigned int mask = 0x80000000;
bool s1=false;
for(int i=0; i<32;i++){
int mask_y= mask bitand x;
if(mask_y){
s1=true;
}
if(s1 and mask_y){
l2=l2+l1;
l1=0;
}
if(s1 and (not mask_y)){
l1++;
}
mask>>=1;
}
cout << l1;
break;
}
case 3:{
int x;
cin >> x;
bool ispal=true;
unsigned int mask1 = 0x80000000;
unsigned int mask2 = 0x00000001;
for(int i=0; i<32; ++i){
int mask_y=x bitand mask1;
int mask_z=x bitand mask2;
if(mask_y=mask_z)
{
continue;
}
else{
ispal=false;
}
mask1>>=1;
mask2<<=1;
}
cout << ispal;
break;
}
default:
break;
}
return 0;
}