fork download
  1. #include <stdio.h>
  2. int main() {
  3. double A, B, C, MEDIA;
  4. // รับ input คะแนนจากผู้ใช้
  5. scanf("%lf %lf %lf", &A, &B, &C);
  6. // คำนวณหาค่าเฉลี่ยถ่วงน้ำหนัก
  7. MEDIA = (A * 2 + B * 3 + C * 5) / 10;
  8. // แสดงผลลัพธ์
  9. printf("MEDIA = %.1lf\n", MEDIA);
  10. return 0;
  11. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
MEDIA = 0.0