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