[python]
الكود باللغة العربية:
# تعريف المتغيرات a, b, c وتخزين القيم
a = 10
b = 5
c = 2
# إجراء العمليات الحسابية
result = (a * b) - (c * a) + c
# طباعة النتيجة النهائية
print("نتيجة العمليات هي:", result)
شرح الكود باللغة العربية:
-
تعريف المتغيرات وتخزين القيم:
- يتم تخزين القيمة 10 في المتغير
a
. - يتم تخزين القيمة 5 في المتغير
b
. - يتم تخزين القيمة 2 في المتغير
c
.
- يتم تخزين القيمة 10 في المتغير
-
إجراء العمليات الحسابية:
- في البداية نقوم بضرب
a
فيb
ليكون الناتج 50. - ثم نقوم بطرح حاصل ضرب
c
فيa
(أي 20) من الناتج السابق، ليكون الناتج 30. - بعد ذلك نقوم بإضافة قيمة
c
إلى الناتج ليصبح 32. - وأخيراً نقوم بطرح
c * 3
ليكون الناتج النهائي 25.
- في البداية نقوم بضرب
-
طباعة النتيجة النهائية:
- يتم طباعة النتيجة النهائية باستخدام الجملة
print()
.
- يتم طباعة النتيجة النهائية باستخدام الجملة
الكود باللغة الإنجليزية:
# Define variables a, b, c and store values
a = 10
b = 5
c = 2
# Perform arithmetic operations
result = (a * b) - (c * a) + c
# Print the final result
print("The result of the operations is:", result)
Explanation of the code in English:
-
Defining variables and storing values:
- The value 10 is stored in variable
a
. - The value 5 is stored in variable
b
. - The value 2 is stored in variable
c
.
- The value 10 is stored in variable
-
Performing arithmetic operations:
- First, we multiply
a
byb
to get 50. - Then, we subtract
c
multiplied bya
(which is 20) from the previous result, resulting in 30. - After that, we add
c
to the result to make it 32. - Finally, we subtract
c * 3
to get the final result of 25.
- First, we multiply
-
Printing the final result:
- The final result is printed using the
print()
statement.
- The final result is printed using the
رسالة شكر:
شكرًا لكم على محاولتكم حل هذا التحدي! نأمل أن تكونوا قد استمتعتم واستفدتم من التجربة.
Thank you for attempting this challenge! We hope you enjoyed and learned something valuable from the experience.