可以了,多谢各位帮忙!!!太感动了
#include "stdio.h"
main()
{
int x,y,t,f;
t=30,f=100;
for(x=1;x<=30;x++)
for(y=1;y<30;y++)
if(x+y==t && 2*x+4*y==f)
printf("x=%d,y=%d",x,y);
}
答案全对