پاسخ تمرین های فصل : عملگرهای منطقی
زیر فصل: ساده سازی مقایسه با bool
-
چه عبارتی در کنسول نمایش داده میشود؟
bool isStudent = true;
bool isReadyForExam = false;
bool canPlayGame = false;
if(isStudent && !isReadyForExam)
canPlayGame = false;
else if(!isStudent || isReadyForExam)
canPlayGame = true;
string gamePermission = canPlayGame == false ? "Can Not" : "Can";
Console.WriteLine("You " + gamePermission + " Play Game");You Can Not Play Game