fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. float x, y, answer;
  5.  
  6. // รับค่าจากผู้ใช้
  7. printf("8 x: ");
  8. scanf("%f", &x);
  9.  
  10. printf("8 y: ");
  11. scanf("%f", &y);
  12.  
  13. // คำนวณผลลัพธ์
  14. answer = (x * y + 7 - 4);
  15.  
  16. // แสดงผลลัพธ์
  17. printf("The result of the calculation (x * y + 7 - 4) is: %.2f\n", answer);
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
8 x: 8 y: The result of the calculation (x * y + 7 - 4) is: 3.00