【简答题】若以下程序片段: void main() { int a[10]; ... sub(a); ... } 其中函数sub的类型为void型,则定义函数sub时,其首部定义可以有以下三种形式(参数的名字用p) _______,________,________
【单选题】如果有以下程序片段: interface Some { int x = 10; } public class Main { public static void main(String[] args) { System.out.println(Some.x); } } 以下描述何者正确?
【单选题】下列关于裘莉亚的说法中不正确的是
D.
她是那种言行一致衷于党的人,而不是善于耍把戏的人
【单选题】如果有以下程序片段: interface Some { protected static final int x = 10; } public class Main { public static void main(String[] args) { System.out.println(Some.x); } } 以下描述何者正确?
【单选题】以下程序片段 。 #include void main ( ) { int x=0,y=0,z=0; if (x=y+z) printf(“***”); else printf(“###”); }