حل تحدي: المتغيرات

[python]

الكود باللغة العربية:

# تعريف المتغيرات a, b, c وتخزين القيم
a = 10
b = 5
c = 2

# إجراء العمليات الحسابية
result = (a * b) - (c * a) + c

# طباعة النتيجة النهائية
print("نتيجة العمليات هي:", result)

شرح الكود باللغة العربية:

  1. تعريف المتغيرات وتخزين القيم:

    • يتم تخزين القيمة 10 في المتغير a.
    • يتم تخزين القيمة 5 في المتغير b.
    • يتم تخزين القيمة 2 في المتغير c.
  2. إجراء العمليات الحسابية:

    • في البداية نقوم بضرب a في b ليكون الناتج 50.
    • ثم نقوم بطرح حاصل ضرب c في a (أي 20) من الناتج السابق، ليكون الناتج 30.
    • بعد ذلك نقوم بإضافة قيمة c إلى الناتج ليصبح 32.
    • وأخيراً نقوم بطرح c * 3 ليكون الناتج النهائي 25.
  3. طباعة النتيجة النهائية:

    • يتم طباعة النتيجة النهائية باستخدام الجملة 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:

  1. 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.
  2. Performing arithmetic operations:

    • First, we multiply a by b to get 50.
    • Then, we subtract c multiplied by a (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.
  3. Printing the final result:

    • The final result is printed using the print() statement.

رسالة شكر:

شكرًا لكم على محاولتكم حل هذا التحدي! نأمل أن تكونوا قد استمتعتم واستفدتم من التجربة.
Thank you for attempting this challenge! We hope you enjoyed and learned something valuable from the experience. :tada:

إعجاب واحد (1)