fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. scanf("%d",&a);
  6. if ( a>3)
  7. printf("この数は3以上である");
  8. else
  9. printf("この数は3以下である");
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5308KB
stdin
6
stdout
この数は3以上である