diff --git a/QUSTOJ/1725_****090114.c b/QUSTOJ/1725_****090114.c new file mode 100644 index 0000000..ffa293f --- /dev/null +++ b/QUSTOJ/1725_****090114.c @@ -0,0 +1,13 @@ +#include + +int main() +{ + + int g,m,c; + for(g=0;g<21;++g) + for(m=0;m<35;m++) + for(c=0;c<100;c+=3) + if(g*5+m*3+c/3==100&&g+m+c==100) + printf("%d\t%d\t%d\n",g,m,c); + return 0; +}