标签:技术 百钱买百鸡 ++ image mamicode src alt 问题 pre
#include<stdio.h>
int main()
{
int x;
int count = 0;
scanf("%d", &x);
for (int i = 1; i < 20; i++)
{
for (int j = 1; j < 33; j++)
{
for (int k = 0; k < 276; k += 3)
{
if ((i + j + k == 100) && (i * 5 + j * 3 + k / 3 == 100))
{
count++;
printf("%d %d %d", i, j, k);
if (count < x)
{
printf("\n");
}
else
return 0;
}
}
}
}
}
标签:技术 百钱买百鸡 ++ image mamicode src alt 问题 pre
原文地址:https://blog.51cto.com/14737345/2479864