【多选题】
以下各组选项中,不能正确定义二维实型数组s的选项是()
①
float s[3][4];float s[ ][4];float s[3][ ]={{1},{0}}
②
float s(3,4);float s[ ][ ]={{0};{0}};float s[3][4]
③
float s[3][4];float s[ ][4]={{0},{0}}; float s[ ][4]={{0},{0},{0}}
④
float s[3][4];float s[3][ ];float s[ ][4]
【多选题】
以下关于跳转语句的叙述中不正确的是()。
①
continue语句的作用是:使程序的执行流跳出包含它的所有循环
②
break语句只能用在循环体内和switch语句体内
③
在循环体内使用break语句和continue语句的作用相同