fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int year_be = 2567;
  5. int year_ce = year_be - 543;
  6. printf("พ.ศ. คือ %d เปลี่ยนเป็น ค.ศ. คือ %d", year_be, year_ce);
  7. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
พ.ศ. คือ 2567 เปลี่ยนเป็น ค.ศ. คือ 2024