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