-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
41 lines (34 loc) · 861 Bytes
/
main.c
File metadata and controls
41 lines (34 loc) · 861 Bytes
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 num1, num2;
scanf("%d %d", &num1, &num2);
if (num1 > num2)
{
int temp = num1;
num1 = num2;
num2 = temp;
}
printf("The Armstrong numbers are:");
for (int i = num1; i <= num2; i++)
if (isArmstrong(i))
printf(" %d", i);
printf("\n");
printf("The Palindromes are:");
for (int i = num1; i <= num2; i++)
if (isPalindrome(i))
printf(" %d", i);
printf("\n");
printf("The Prime numbers are:");
for (int i = num1; i <= num2; i++)
if (isPrime(i))
printf(" %d", i);
printf("\n");
printf("The Strong numbers are:");
for (int i = num1; i <= num2; i++)
if (isStrong(i))
printf(" %d", i);
printf("\n");
return 0;
}