fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. float sales, salary, commission, social_security, total_income;
  6.  
  7. // รับข้อมูลจากผู้ใช้
  8. printf("กรุณาใส่ยอดขาย: ");
  9. scanf("%f", &sales);
  10. printf("กรุณาใส่เงินเดือน: ");
  11. scanf("%f", &salary);
  12.  
  13. // คำนวณค่าคอมมิชชั่นและค่าประกันสังคม
  14. commission = sales * 0.30;
  15. social_security = salary * 0.03;
  16.  
  17. // คำนวณรายได้รวม
  18. total_income = salary + commission - social_security;
  19.  
  20. // แสดงผลลัพธ์
  21. printf("ค่าคอมมิชชั่น: %.2f บาท\n", commission);
  22. printf("ค่าประกันสังคม: %.2f บาท\n", social_security);
  23. printf("รายได้รวม: %.2f บาท\n", total_income);
  24.  
  25. return 0;
  26. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
กรุณาใส่ยอดขาย: กรุณาใส่เงินเดือน: ค่าคอมมิชชั่น: -0.00 บาท
ค่าประกันสังคม: 0.00 บาท
รายได้รวม: -0.00 บาท