fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x,y;
  5. x=5;
  6. if(x<3){
  7. printf("xは小さい\n");
  8. }else{
  9. printf("xは大きい\n");
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5312KB
stdin
87
stdout
xは大きい