mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
23 lines
331 B
C
23 lines
331 B
C
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
int n;
|
||
|
|
||
|
scanf("%d", &n);
|
||
|
|
||
|
int x = sqrt(n);
|
||
|
|
||
|
if (x * x == n) {
|
||
|
if (x % 2 == 0) {
|
||
|
printf("Even special number\n");
|
||
|
} else {
|
||
|
printf("Odd special number\n");
|
||
|
}
|
||
|
} else {
|
||
|
printf("No\n");
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|