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