ac

一二之殇...二九之主  •  2年前


include <stdio.h>

int main(void) {

int n, i = 0, j = 0, x = 0, y = 0, z = 0;
scanf("%d", &n);
while (i <= 200) {
	x = n - i * 12;
	if (x <= 0) {
		break;
	}
	if (x % 8 == 0 && x / 8 <= 50) {
		printf("%d %d\n", i, x / 8);
		y++;
	}
	i++;
}
if (y == 0) {
	printf("No");
}
return 0;

}


评论:

请先登录,才能进行评论