fork download
  1. #include <stdio.h>
  2. int main() {
  3.  
  4. int age = 19;
  5. float height = 181.2;
  6. double weight = 62.4; // น้ำหนักในหน่วยกิโลกรัม
  7. double height_in_meters = height / 100; // แปลงส่วนสูงจากเซนติเมตรเป็นเมตร
  8. double bmi = weight / (height_in_meters * height_in_meters); // คำนวณ BMI
  9. char name[] = "Suttawee";
  10. char surname[] = "Ritsamak";
  11. char studentID[] = "6710210355";
  12. double num1 = 3.14, num2 = 1.50;
  13. double sum = num1 * num2; // คำนวณ num1 คูณ num2
  14.  
  15. double radius = 6.2374; // กำหนดค่ารัศมี
  16. double area;
  17. double circumference; // ประกาศตัวแปรสำหรับเก็บค่าเส้นรอบวง
  18. area = 3.14159 * radius * radius;
  19. circumference = 2 * 3.14159 * radius;
  20.  
  21.  
  22. printf("Age: %d years\n", age); // แสดง Age
  23. printf("Height: %.1f cm\n", height); // แสดง Height
  24. printf("BMI: %.2f\n", bmi); // แสดงค่า BMI ด้วยทศนิยม 2 ตำแหน่ง
  25. printf("Name: %s\n", name); // แสดง Name
  26. printf("Surname: %s\n", surname); // แสดง surname
  27. printf("Student ID: %s\n", studentID); // แสดง student ID
  28. printf("Sum: %.3f\n", sum); // แสดงผลด้วยทศนิยม 3 ตำแหน่ง
  29. printf("Radius: %.4f\n", radius);
  30. printf("Area: %.5f\n", area);
  31. printf("Circumference: %.4f\n", circumference);
  32. return 0 ;
  33. }
  34.  
  35.  
  36.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Age: 19 years
Height: 181.2 cm
BMI: 19.01
Name: Suttawee
Surname: Ritsamak
Student ID: 6710210355
Sum: 4.710
Radius: 6.2374
Area: 122.22406
Circumference: 39.1907