fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4. #include <stdbool.h>
  5.  
  6. main()
  7. {
  8. int a = 30, x;
  9.  
  10. x = (0 <= a && a <=100) ? a : 0;
  11.  
  12. printf("%d\n", x);
  13. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
30