【简答题】If you order before 15th April, (it's not necessary) for you to pay until August.If you order before 15th April, you ___________________________________
【单选题】对于下列Test.java下列哪个叙述是正确的? public class Test { public static void main (String args[ ]) { int m = 10, n = 20; if(n>m) System.out.print("hello"); System.out.print("你好"); else System.out.print("ok"); Syst...
【简答题】The book is optional. My professor said we could read it if we needed extra credit. But we ______ read it if we don't want to. (can't/ don't have to/mustn't)
【判断题】在微观层次上,日本文学的题材比中国文学题材要宽泛?
【单选题】下述程序的输出结果是( )。 #define N 20 void fun(int a[],int n,int m) { int i,j; for(i=m;i>n;i--)a[i+1]=a[i]; } main( ) { int i,a[N]={1,2,3,4,5,6,7,8,9,10}; fun(a,2,9); for(i=0;i<5;i++)printf('%d',a[i]); }