Math  /  Numbers & Operations

Question1- Write a Python program that requests five integer values from the user. It then prints the maximum and minimum values entered. If the user enters the values 3,2,5,03,2,5,0, and 1 , the program would indicate that 5 is the maximum and 0 is the minimum. Your program should handle ties properly; for example, if the user enters 2, 42, 3 and 3, the program should report 2 as the minimum and 4 as maximum.

Studdy Solution

STEP 1

1. البرنامج سيطلب من المستخدم إدخال خمسة أعداد صحيحة.
2. البرنامج سيقوم بطباعة القيمة العظمى والصغرى من القيم المدخلة.
3. البرنامج يجب أن يتعامل بشكل صحيح مع القيم المتساوية.

STEP 2

1. طلب إدخال القيم من المستخدم.
2. إيجاد القيمة العظمى والصغرى.
3. طباعة النتائج.

STEP 3

استخدام دالة `input()` لطلب إدخال خمسة أعداد صحيحة من المستخدم وتخزينها في قائمة.
```python numbers = [] for i in range(5): num = int(input("أدخل عددًا صحيحًا: ")) numbers.append(num) ```

STEP 4

استخدام دالتي `max()` و `min()` لإيجاد القيمة العظمى والصغرى من القائمة.
```python max_value = max(numbers) min_value = min(numbers) ```

STEP 5

طباعة القيم العظمى والصغرى باستخدام دالة `print()`.
```python print(f"القيمة العظمى هي: {max_value}") print(f"القيمة الصغرى هي: {min_value}") ```

Was this helpful?

Studdy solves anything!

banner

Start learning now

Download Studdy AI Tutor now. Learn with ease and get all help you need to be successful at school.

ParentsInfluencer programContactPolicyTerms
TwitterInstagramFacebookTikTokDiscord