正确答案: D
限制和忽略
题目:Visual FoxPro的“参照完整性”中“插入规则”包括的选择是( )。
查看原题查看所有试题
学习资料的答案和解析:
[单选题]下面程序的结果为( )。 #include"iostream.h" void change (int a,int b) { int temp; temp=a; a=b; b=temp: } void main() { int m,n; m=8; n=9; change(m,n): cout m" " n endl; }
89
[单选题]下列对Java源程序结构的叙述中,错误的是
JavaApplication中的publicclass类允许0个或多个
解析:解析:JavaApplication中的publicclass类允许0个或1个,而不是多个。publicclass指定应用程序类名,需与源文件名一致。源文件中最多只能有一个public类,其他类的个数不限。