国庆懈怠了,现在开始找回自己
/*****************************************************************************************马克思手稿中有一道趣味数学题:有30个人,其中有男人、女人和小孩,在一家饭馆里吃饭共花了50
先令,每个男人各花3先令,每个女人各花2先令,每个小孩各花1先令,问男人、女人和小孩各有几人?
*****************************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
int a,b;
for(a = 1;a < 17;a++)
for(b = 1;b < 25;b++)
if(50 == a * 3 + b * 2 + (30 - a - b))
printf("a == %d,b == %d,c == %d\n",a,b, 30 - a - b);
return 0;
}