Advertisement
NiceBBMBThai

Untitled

Aug 29th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. def main():
  2. # รับค่าตัวเลขเป็น input
  3. x = input("ป้อนตัวเลขชุดที่ 1: ")
  4. y = input("ป้อนตัวเลขชุดที่ 2: ")
  5.  
  6. # แปลงค่า input ให้เป็นจำนวนเต็ม
  7. x = int(x)
  8. y = int(y)
  9.  
  10. # เรียกใช้ฟังก์ชันเพื่อหาผลรวมและค่าเฉลี่ย
  11. result_sum = add(x, y)
  12. result_avg = average(x, y)
  13.  
  14. # แสดงผลลัพธ์
  15. print("ผลรวมคือ: ", result_sum)
  16. print("ค่าเฉลี่ยคือ: ", result_avg)
  17.  
  18. def add(a, b):
  19. # ฟังก์ชันหาผลรวมของตัวเลข
  20. sum = a + b
  21. return sum
  22.  
  23. def average(a, b):
  24. # ฟังก์ชันหาค่าเฉลี่ยของตัวเลข
  25. avg = (a + b) / 2
  26. return avg
  27.  
  28. # เรียกใช้ฟังก์ชันหลัก
  29. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement