-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path046-assign01.c
166 lines (150 loc) · 1.79 KB
/
046-assign01.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include<stdio.h>
#include<math.h>
//sum of first 20 prime numbers in [1,500]
void primesum()
{
int i,j,sum=0,count,count1=0;
for(i=2;i<=500;i++)
{
count=0;
for(j=2;j<i;j++)
{
if(i%j==0)
{
count++;
}
}
if(count==0)
{
sum+=i;
count1++;
//printf("%d %d\n",i,count1);
}
if(count1>=20)
{
break;
}
}
printf("%d\n",sum);
}
//all the integers divisible by 3 but not by 2 in [1,50]
void divi()
{
int i;
for(i=2;i<=50;i++)
{
if(i%3==0 && i%2!=0)
{
printf("%d\n",i);
}
}
}
//non-zero factors of any positive integer in [60,200]
void factors()
{
int i,j;
for(i=60;i<=200;i++)
{
printf("%d>",i);
for(j=1;j<=i;j++)
{
if(i%j==0)
{
printf("%d ",j);
}
}
printf("\n");
}
}
/*void factor()
{
int i,j,k;
for(k=0;k<5;k++)
{
i=rand()%140+60;
printf("%d-",i);
for(j=1;j<=i;j++)
{
if(i%j==0)
{
printf("%d ",j);
}
}
printf("\n");
}
}
*/
//no of odd digits in a given number
void countodd(int n)
{
int j,count=0;
while(n>0)
{
j=n%10;
n=n/10;
if(j%2!=0)
{
count++;
}
}
printf("%d\n",count);
}
//febonacci sequence
void fibon()
{
long long int j=1,sum=1,k=1;
printf("1 1 ");
while(k<80)
{
sum=sum+k;
j=j+k;
k=j-k;
j=j-k;
k=k+j;
if(k<80)
printf("%lld ",k);
}
printf("\n%lld \n",sum);
}
//x=y^2+z^2
void bonus()
{
int i,j,k,A[500]={0};
for(i=0;i<=22;i++)
{
for(j=0;j<=22;j++)
{
k=pow(i,2)+pow(j,2);
if(k>500)
{
continue;
}
if(A[k]==0)
{
printf("%d\n",k);
}
A[k]=1;
}
}
}
//main function
int main()
{
int n;
scanf("%d",&n);
primesum();
printf("\n");
divi();
printf("\n");
factors();
printf("\n");
countodd(n);
printf("\n");
//factor();
fibon();
printf("\n");
bonus();
return 0;
}
//roll_no:201601046
//name:Krishna Kumar Dey