-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo3.c
207 lines (166 loc) · 4.37 KB
/
demo3.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*wap to display all algorithm*/
// #include <stdio.h>
// int main()
// {
// int a,b,sum;
// printf("Enter The First No :");
// scanf("%d",&a);
// printf("Enter The Second No :");
// scanf("%d",&b);
// sum = a+b;
// int c = a-b;
// int e = a*b;
// int f = a/b;
// int g = a%b;
// printf("The sum is :%d\n",sum);
// printf("The Difference is :%d\n",c);
// printf("The Product is :%d\n",e);
// printf("The Quotient is :%d\n",f);
// printf("The Remainder is :%d",g);
// return 0;
// }
// #include <stdio.h>
// int main(int argc, char const *argv[])
// {
// float a;
// printf("Enter the Number:");
// scanf("%f",&a);
// int e=a;
// float g = a-e ;
// printf("The fraction part is: %f\n",g);
// printf("Integer Part:%d ",e);
// return 0;
// }
// #include <stdio.h>
// int main()
// {
// int a;
// printf("Enter the four digit number:");
// scanf("%d",&a);
// // printf("the digits:%d%d%d%d",b,c,e,f);
// int b=a%10;
// int c=a/10;
// int d=c%10;
// int e=c/10;
// int f=e%10;
// int g=e/10;
// printf("first digit:%d\n",g);
// printf("Second digit:%d\n",f);
// printf("Third Digit:%d\n",d);
// printf("Fourth Digit:%d",b);
// return 0;
// }
//
// #include<stdio.h>
// int main(int argc, char const *argv[])
// {
// int n;
// printf("Enter The (3 digit) Number to reverse :\n");
// scanf("%d",&n);
// int a,b,c,d;
// a = n%10;
// b= n/10;
// c = b%10;
// d =b/10;
// printf("Reverse of the given Number is %d%d%d",a,c,d);
// return 0;
// }
// #include <stdio.h>
// int main(int argc, char const *argv[])
// {
// int a;
// printf("ENTER 7 DIGIT NO:");
// scanf("%d",&a);
// int b=(a%100000)/100;
// printf("Middle 3 Numbers :%d ",b);
// return 0;
// }
// #include <stdio.h>
// int main()
// {
// int a;
// printf("Enter the four digit number:");
// scanf("%d",&a);
// // printf("the digits:%d%d%d%d",b,c,e,f);
// int b=a%10;//last digit
// int c = (a/100)/10;//first digit
// int d = (a/100)%10;//second line
// int e =(a%100)/10;//third digit
// printf("The Required Output : %d%d%d%d",b,d,e,c);
// return 0;
// }
// #include<stdio.h>
// int main(int argc, char const *argv[])
// {
// int a,b,c;
// printf("Enter First no:\n");
// scanf("%d",&a);
// printf("Enter second no:\n");
// scanf("%d",&b);
// printf("Enter third no:\n");
// scanf("%d",&c);
// int d=(a<b)?(a<c)?a:c:((b>c)?b:c);
// printf("min no:%d",d);
// return 0;
// }
// #include<stdio.h>
// int main(int argc, char const *argv[])
// {
// int a,b,c,d,e,f,g;
// printf("Enter First no:");
// printf("Enter second no:");
// printf("Enter third no:");
// printf("Enter fourth no:");
// printf("Enter five no:");
// printf("Enter six no:");
// printf("Enter seven no:");
// scanf("%d",&a);
// scanf("%d",&b);
// scanf("%d",&c);
// scanf("%d",&d);
// scanf("%d",&e);
// scanf("%d",&f);
// int d=(a>b)?(a>c)?a:c:((b>c)?b:c)?(c>d)?(d>e)?d:e;
// printf("min no:%d",d);
// return 0;
// }
// #include <stdio.h>
// int main(int argc, char const *argv[])
// {
// int a,b,c,d,e,f,g;
// printf("Enter the numbers:");
// scanf("%d%d%d%d%d%d%d",&a,&b,&c,&d,&e,&f,&g);
// int x=(a<b)?((a<c)?a:c):((b<c)?b:c);
// int y=(d<e)?((d<f)?d:f):((e<f)?e:f);
// int z=(x<y)?((x<g)?x:g):((y<g)?y:g);
// printf("Minimun Number: %d",z);
// return 0;
// }
/*error*/
// #include<stdio.h>
// int main(int argc, char const *argv[])
// {
// int a,b,c;
// printf("Enter First no:\n");
// scanf("%d",&a);
// printf("Enter second no:\n");
// scanf("%d",&b);
// printf("Enter third no:\n");
// scanf("%d",&c);
// int d=(a<b)?a:b;
// int e = (a<c)?a:b;
// int f = (b>c)?b:c;
// //int e = ((b<c)?c:b);
// printf("Second Minimum number:%d",e);
// return 0;
// }
#include<stdio.h>
int main(int argc, char const *argv[])
{
int a,b;
printf("num");
scanf("%d",&a);
b=a/100;
printf("%d",b);
return 0;
}