[My site ]
Main » 2013 » December » 12 » C - 10 - Logical Operators
11:14 PM
C - 10 - Logical Operators
هانعمل برنامج يطلب من الـ 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");
   }

لو غيرنا && بـ || دي معناها OR لو أي شرط من الشرطين اتحقق نفذلي الحالة الأولى وهيكتب you are normal لو ماتحققش ولا شرط اكتب you are weird



Category: C Programming - 1 | Views: 402 | Added by: ahansaary | Rating: 0.0/0
Total comments: 0
Only registered users can add comments.
[ Sign Up | Login ]