fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int i;
  8. i=3;
  9. if(i==1){
  10. printf("大吉\n");
  11. }else{
  12. if(i==2){
  13. printf("中吉\n");
  14. }else{
  15. if(i==3){
  16. printf("小吉\n");
  17. }
  18. }
  19. }
  20.  
  21. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
小吉