A. if (x>0) print(x)elseprint(-x) B. if x>0print(x)elseprint(-x) C. if x>0:print(x)elseprint(-x) D. if x>0:print(x)else: print(-x)
A. (x >= 1)and (x <=10) and(x >= 200)and(x <=300) B. (x >= 1)or (x <=10) or(x >= 200)or(x <=300) C. (x >= 1)and (x <=10)or(x >= 200)and(x <=300) D. (x >= 1)or (x <=10) and(x >= 200)or(x <=300)
A. 25 B. 18 C. 6 D. 不确定
A. 在判断条件后必须加上“:”符号 B. 可以编写并运行“if -else-else”形式的结构 C. 语句块相对于判断条件必须有4格缩进 D. 一个完整的“if-else”语句必须包含判断条件、语句块