fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int se;
  6.  
  7. se = 2025;
  8.  
  9. if ( se % 4 == 0) {
  10. printf("うるう年です\n");
  11. } else {
  12. printf("うるう年ではないです\n");
  13. }
  14. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
うるう年ではないです