fork download
  1. #include <stdio.h>
  2.  
  3. struct Date{
  4. int year;
  5. int month;
  6. int day;
  7. } hizuke;
  8.  
  9. int main(void) {
  10.  
  11. hizuke.year = 2025;
  12. hizuke.month = 12;
  13. hizuke.day = 18;
  14.  
  15. printf("%d年%d月%d日\n",hizuke.year, hizuke.month, hizuke.day);
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
2025年12月18日