名詞解釋關系的操作

您可能感興趣的試卷

你可能感興趣的試題

2.多項選擇題在下列各說法中,正確的說法有()。

A.與while結構相比,do…while結構至少要執(zhí)行一次循環(huán)。
B.for結構和do…while結構類似,也是“先判斷后執(zhí)行”。
C.do…while結構是“先執(zhí)行后判斷”。
D.進入do…while循環(huán)的條件是:條件表達式為1。
E.退出while循環(huán)的條件是:條件表達式為1。

4.單項選擇題在C程序中,設一表達式中包含有int,long,char和unsigned類型的變量和數(shù)據(jù),這四種類型數(shù)據(jù)的轉換規(guī)則是()。

A.int→unsigned→long→char
B.char→int→long→unsigned
C.char→int→unsigned→long
D.int→char→unsigned→long