单项选择题
A.double[]b=new double[5]{1,2,3,4,5};B.double[]b=new double[]{1,2,3,4,5};C.double[]b={1,2,3,4,5};D.double[]b=new{1,2,3,4,5};
下面所列选项中,能够正确定义具有10个数据元素一维整型数组a的是()。A.int[]a=new int[10]...
单项选择题下面所列选项中,能够正确定义具有10个数据元素一维整型数组a的是()。
A.int[]a=new int[10];B.int a[10];C.int[]a=int[10];D.int[]a=int(10);
通过string类的方法,将stringstr1="MICROSOFTVISUALSTUDIO2008"转换成...
单项选择题通过string类的方法,将stringstr1="MICROSOFTVISUALSTUDIO2008"转换成"microsoftvisualstudio2008",正确的语句是()。
A.str1.ToLower()B.str1.ToUpper()C.str1.ToUpperD.str1.ToLower
执行doublex=Math.Ceiling(-3.75)语句,x的值为()。A.4B.-4C.3D.-3
单项选择题执行doublex=Math.Ceiling(-3.75)语句,x的值为()。
A.4B.-4C.3D.-3