mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
32 lines
620 B
C
32 lines
620 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int x;
|
|
|
|
scanf("%d", &x);
|
|
|
|
int canFill = 0;
|
|
|
|
for (int a = 0; a <= x / 4; a++) {
|
|
for (int b = 0; b <= x / 5; b++) {
|
|
for (int c = 0; c <= x / 7; c++) {
|
|
// 计算当前组合的体积
|
|
if (4 * a + 5 * b + 7 * c == x) {
|
|
canFill = 1;
|
|
break;
|
|
}
|
|
}
|
|
if (canFill) break;
|
|
}
|
|
if (canFill) break;
|
|
}
|
|
|
|
if (canFill) {
|
|
printf("ni bu yao guo lai a!\n");
|
|
} else {
|
|
printf("What a lucky day!\n");
|
|
}
|
|
|
|
return 0;
|
|
}
|