Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def main():
- # รับค่าตัวเลขเป็น input
- x = input("ป้อนตัวเลขชุดที่ 1: ")
- y = input("ป้อนตัวเลขชุดที่ 2: ")
- # แปลงค่า input ให้เป็นจำนวนเต็ม
- x = int(x)
- y = int(y)
- # เรียกใช้ฟังก์ชันเพื่อหาผลรวมและค่าเฉลี่ย
- result_sum = add(x, y)
- result_avg = average(x, y)
- # แสดงผลลัพธ์
- print("ผลรวมคือ: ", result_sum)
- print("ค่าเฉลี่ยคือ: ", result_avg)
- def add(a, b):
- # ฟังก์ชันหาผลรวมของตัวเลข
- sum = a + b
- return sum
- def average(a, b):
- # ฟังก์ชันหาค่าเฉลี่ยของตัวเลข
- avg = (a + b) / 2
- return avg
- # เรียกใช้ฟังก์ชันหลัก
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement