1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 21:58:41 +00:00
202401-programming-assignments/【额外练习】选择结构/7-41 选择-完全平方数2.c

23 lines
331 B
C
Raw Normal View History

2024-11-02 14:07:00 +00:00
#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;
}