العبارات الشرطية :
العبارات الشرطية تسمح لنا بتنفيذ كتلة من التعليمات البرمجية عندما يكون الشرط المحدد صحيحًا.
يقيم الشرط القيم المنطقية TRUE أو FALSE ويتم اتخاذ القرار بناءً على هذه القيم المنطقية.
مثال اختبار العدد ان كان موجب ام لا :
let number = 5
if number > 0 {
print("This is a positive number.")
}
print("This will be executed anyways.")
نفس المثال السابق لكن في حال لم يتحقق الشرط :
let number = -5
if number > 0 {
print("This is a positive number.")
}
print("This will be executed anyways.")
//outputs This will be executed anyways.
ويمكننا استخدام if-else حيث انه إذا كانت قيمة الشرط المعطى صحيحة ، فعندئذ يتم تنفيذ if وإذا كان الشرط المعطى خاطئًا ؛يتم تنفيذ else
مثال عن استخدام If else :
let number = 5
if number > 0 {
print("This is a positive number.")
} else {
print("This is not a positive number.")
}
print("This will be executed anyways.")
مثال عن استخدام If else if :
let number = 0;
if number > 0 {
print("This is a positive number.")
}
else if (number < 0) {
print("This is a negative number.")
}
else {
print("This number is 0.")
}