fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int date = 1;
  6.  
  7. if(date==1){
  8. printf("大吉");
  9. }else if(date==2){
  10. printf("中吉");
  11. }else if(date==3){
  12. printf("小吉");
  13. }
  14. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
大吉