-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
50 lines (48 loc) · 907 Bytes
/
main.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
#include <stdio.h>
#include "NumClass.h"
int main(){
int a=0;
int b=0;
scanf("%d%d", &a, &b);
printf("The Armstrong numbers are:");
for(int i = a; i < b; i+=1){
if(isArmstrong(i)){
printf(" %d",i);
}
}
if(isArmstrong(b)){
printf(" %d",b);
}
printf("\n");
printf("The Palindromes are:");
for(int i = a; i < b; i+=1){
if(isPalindrome(i)){
printf(" %d",i);
}
}
if(isPalindrome(b)){
printf(" %d",b);
}
printf("\n");
printf("The Prime numbers are:");
for(int i = a; i < b; i+=1){
if(isPrime(i)){
printf(" %d",i);
}
}
if(isPrime(b)){
printf(" %d",b);
}
printf("\n");
printf("The Strong numbers are:");
for(int i = a; i < b; i+=1){
if(isStrong(i)){
printf(" %d",i);
}
}
if(isStrong(b)){
printf(" %d",b);
}
printf("\n");
return 0;
}