if語句的應用

2021-10-09 07:47:07 字數 1150 閱讀 7079

if else

if條件多選一

格式

if

(條件)

//判斷條件

int

main

(void)if

(score<=60)

system

("pause");

return0;

}

1、如果只有一條語句,可以不加花括號,建議都加

2、不要隨意加分號

int

main

(void

)

結果還是輸出hello,if變成了空語句。

3、區間條件寫法

不能這麼寫,在某些條件下該語句正確

if(60<=a<=70)

應該

if

(a>=

60&& a<=

70)

4、if(a=60)和if(a= =60)完全不一樣,第乙個a=60即為大於0為真,無論如何都執行,a==60指當a=60是才執行,打**粗心會出錯,所以應該把常數寫左邊

if(60

=a)

這樣會報錯,可以提醒你出錯了

格式

if

(條件)

else

int

main

(void

)else

system

("pause");

return0;

}

格式

intmain

(void

)else

if(條件)

else

if(條件)

else

}

int

main

(void

)else

if(a>=

60&&a<=70)

else

if(a>=

70&&a<=90)

else

mysql語句應用 Mysql語句與應用

1。正規表示式 select from analysis result where result regexp 上海 內蒙古 limit 1 且 select from analysis result where id 1 and result regexp 上海 and result regexp...

FOR XML PATH 語句的應用

大家都知道在sql server中利用 for xml path 語句能夠把查詢的資料生成xml資料,下面是它的一些應用示例。declare temptable table userid int,username nvarchar 50 insert into temptable userid us...

FOR XML PATH 語句的應用

大家都知道在sql server中利用 for xml path 語句能夠把查詢的資料生成xml資料,下面是它的一些應用示例。declare temptable table userid int,username nvarchar 50 insert into temptable userid us...