-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibex1.c
56 lines (51 loc) · 1.58 KB
/
libex1.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
/*
file: libex1.c
author: David De Potter
description: example program using functions from clib library
Program asks for a pos. integer and prints some of its properties
compilation: ../ctest.sh libex1.c
usage: ./a.out
*/
#include "clib/clib.h"
int isValidInt(char *str, int *n) {
// check if the input is a valid positive integer
char *end;
if (str[strlen(str) - 1] != '\n') {
// if the input is too long, clear stdin buffer
while (getchar() != '\n');
return 0;
}
// try to convert the input to an int
*n = strtol(str, &end, 10);
// return 1 if the input was fully converted to a pos int
return *end == '\n' && *n > 0;
}
int main() {
char input[11];
int n;
while (1) {
printf("\nGive a positive integer of at most 9 digits (q to quit): ");
if (! fgets(input, 11, stdin) || input[0] == 'q')
break;
// check if the input is valid
if (! isValidInt(input, &n)) {
printf("Invalid input\n");
continue;
}
// print some properties of the input number
char *bin = toBinary(n);
int nDigits = countDigits(n);
printf("The input has %d digit%s.\n"
"The number is %sa prime.\n"
"It is %sa perfect square.\n"
"Its reverse is %d.\n"
"Its binary representation is %s, which is %sa palindrome.\n",
nDigits, nDigits == 1 ? "" : "s",
isPrime(n) ? "" : "not ",
isPerfSquare(n) ? "" : "not ",
reverseInt(n),
bin, isStrPalindrome(bin, bin + strlen(bin) - 1) ? "" : "not ");
free(bin);
}
return 0;
}