fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int buddhistYear, christianYear;
  5.  
  6. // รับค่าปี พ.ศ.
  7. printf("Enter Buddhist Era year (พ.ศ.): ");
  8. scanf("%d", &buddhistYear);
  9.  
  10. // คำนวณปี ค.ศ.
  11. christianYear = buddhistYear - 543;
  12.  
  13. // แสดงผล
  14. printf("The year in Anno Domini (ค.ศ.) is: %d\n", christianYear);
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Enter Buddhist Era year (พ.ศ.): The year in Anno Domini (ค.ศ.) is: 32224