fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int x;
  5. int y;
  6. int z;
  7. int a;
  8. int b;
  9. int c;
  10. int ans;
  11. printf("(a,b,c)= ");
  12. for(a=0;a<12;a++){
  13. x=6*a;
  14. for(b=0;b<8;b++){
  15. y=9*b;
  16. for(c=0;c<4;c++){
  17. y=20*c;
  18. ans=x+y+z;
  19. if(ans>55 && ans<66){
  20. printf("(%d,%d,%d) ",a,b,c);
  21. }
  22. else;
  23. }
  24. }
  25. }
  26. return 0;
  27. }
  28.  
  29.  
Success #stdin #stdout 0s 5276KB
stdin
3
stdout
(a,b,c)= (0,0,3) (0,1,3) (0,2,3) (0,3,3) (0,4,3) (0,5,3) (0,6,3) (0,7,3) (3,0,2) (3,1,2) (3,2,2) (3,3,2) (3,4,2) (3,5,2) (3,6,2) (3,7,2) (4,0,2) (4,1,2) (4,2,2) (4,3,2) (4,4,2) (4,5,2) (4,6,2) (4,7,2) (6,0,1) (6,1,1) (6,2,1) (6,3,1) (6,4,1) (6,5,1) (6,6,1) (6,7,1) (7,0,1) (7,1,1) (7,2,1) (7,3,1) (7,4,1) (7,5,1) (7,6,1) (7,7,1) (10,0,0) (10,1,0) (10,2,0) (10,3,0) (10,4,0) (10,5,0) (10,6,0) (10,7,0)