forked from a-r-nida/HactoberFest2020-Beginers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modified_kaprekar_numbers.c
107 lines (86 loc) · 2.21 KB
/
modified_kaprekar_numbers.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
#include <assert.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* readline();
// Complete the kaprekarNumbers function below.
void kaprekarNumbers(int p, int q) {
int flag=0;
for(long i=p;i<=q;i++){
long long int num=i*i,x,y;
if(i<=9){
x=num/10;
y=num-(x*10);
}
else if(i<=99){
x=num/100;
y=num-(x*100);
}
else if(i<=999){
x=num/1000;
y=num-(x*1000);
}
else if(i<=9999){
x=num/10000;
y=num-(x*10000);
}
else if(i<=99999){
x=num/100000;
y=num-(x*100000);
}
if(x+y==i){
printf("%ld ",i);
flag=1;
}
}
if(flag==0){
printf("INVALID RANGE");
}
}
int main()
{
char* p_endptr;
char* p_str = readline();
int p = strtol(p_str, &p_endptr, 10);
if (p_endptr == p_str || *p_endptr != '\0') { exit(EXIT_FAILURE); }
char* q_endptr;
char* q_str = readline();
int q = strtol(q_str, &q_endptr, 10);
if (q_endptr == q_str || *q_endptr != '\0') { exit(EXIT_FAILURE); }
kaprekarNumbers(p, q);
return 0;
}
char* readline() {
size_t alloc_length = 1024;
size_t data_length = 0;
char* data = malloc(alloc_length);
while (true) {
char* cursor = data + data_length;
char* line = fgets(cursor, alloc_length - data_length, stdin);
if (!line) {
break;
}
data_length += strlen(cursor);
if (data_length < alloc_length - 1 || data[data_length - 1] == '\n') {
break;
}
alloc_length <<= 1;
data = realloc(data, alloc_length);
if (!line) {
break;
}
}
if (data[data_length - 1] == '\n') {
data[data_length - 1] = '\0';
data = realloc(data, data_length);
} else {
data = realloc(data, data_length + 1);
data[data_length] = '\0';
}
return data;
}