-
Notifications
You must be signed in to change notification settings - Fork 0
/
kamal.c
62 lines (52 loc) · 1.15 KB
/
kamal.c
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
#include<stdio.h>
#include<stdlib.h>
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<math.h>
#include<string.h>
void calculate_the_maximum(int , int );
int maximum(int , int);
int maximum(int a , int b){
if(a>b){
return a;
}
else{
return b;
}
}
void calculate_the_maximum(int n, int k) {
int i=1 , j=1, or , and, xor ,or_max= -1000, and_max= -1000, xor_max= -1000;
for(i=1;i<=n-1;i++){
for(j=i;j<n;j++){
and = (i & (j+1));
if(and < k){
and_max =maximum(and_max, and);
}
for(j=i;j<n;j++){
printf("hello bro");
or = (i | (j+1));
if(or < k){
or_max = maximum(or_max , or);
printf("hiii");
}
}
for(j=i;j<n;j++){
xor = (i ^ (j+1));
if(xor < k){
xor_max =maximum(xor_max, xor);
}
}
}
}
printf("%d\n", and_max);
printf("%d\n", or_max);
printf("%d\n", xor_max);
}
int main() {
int n, k;
printf("enter the value of n , k : ");
scanf("%d %d", &n, &k);
calculate_the_maximum(n, k);
return 0;
}