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