هانعمل برنامج يطلب من الـ user الـ number of eyes and toes لو 2 و 10 يبقى طبيعي لو أي حاجة تانية يبقى مش طبيعي
int eyes;
int toes;
printf("Enter the number of eyes and toes");
scanf("%d%d", &eyes, &toes);
if(eyes == 2 && toes == 10)
{
printf("you are normal");
}
else
{
printf("you are weird");
}
هنا && معناها AND يشترط وجود
الإتنين eyes = 2 و toes = 10 في الحالة دي هايكتب you are normal .. انما
لو أي رقم غير الرقمين دول حتى لو واحد منهم صح ادخلي على الحالة التانية
وهي انه يكتب you are weird
int eyes;
int toes;
printf("Enter the number of eyes and toes");
scanf("%d%d", &eyes, &toes);
if(eyes == 2 || toes == 10)
{
printf("you are normal");
}
else
{
printf("you are weird");
}