fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int c=2024;
  8.  
  9.  
  10. if ((c%100==0)&&(c%400!=0)){
  11. printf("うるう年\n");
  12. }
  13.  
  14. else if(c%4==0){
  15. printf("うるう年\n");
  16. }
  17. else{
  18. printf("うるう年じゃな\n");
  19. }
  20. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
うるう年