using System.IO;
using System;
class Program
{
static void Main()
{
String sGender="male";
int iHeight = 180;
if (((sGender=="male")&&(iHeight>170))||
((sGender=="female")&&(iHeight>160))) {
Console.WriteLine("Qualified.");
} else {
Console.WriteLine("Rejected.");
}
}
}
你應該是想要找||
而不&&
因為一般來說不會有人是男生又是女生...
if(男生.身高>170 || 女生.身高>160)
{
//...
}
這個問題是很基本的程式判斷,建議你把MSDN C # 運算子和運算式 先看完
合併 || 跟 && 做單串過濾
if( (學生.性別=="男" && 學生.身高>170) || (學生.性別=="女" && 學生.身高>160))
{
MessageBox.Show("你入選了");
}