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-26 选择-宝藏.c

32 lines
620 B
C
Raw Normal View History

2024-10-30 15:00:18 +00:00
#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;
}