fork download
  1. ////66361297 ชุติมา คำมีภา
  2. #include <stdio.h>
  3. int main() {
  4. float A, B, C, MEDIA;
  5. // คะแนนจากผู้ใช้
  6. scanf("%lf %lf %lf", &A, &B, &C);
  7. // ค่าเฉลี่ยถ่วงน้ำหนัก
  8. MEDIA = (A * 2 + B * 3 + C * 5) / 10;
  9. // ผลลัพธ์
  10. printf("MEDIA = %.1lf\n", MEDIA);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
MEDIA = -3282432810417127424.0