网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
多选题
在Java中,下列()是合法的声明。
A
float f=1/3;
B
int i=1/3;
C
float f=1.01;
D
double d=999d;
参考答案
参考解析
解析:
暂无解析
更多 “多选题在Java中,下列()是合法的声明。Afloat f=1/3;Bint i=1/3;Cfloat f=1.01;Ddouble d=999d;” 相关考题
考题
有以下程序#include stdio.hmain(){ int f,f1,f2,i;f1=0;f2=1;printf("%d %d ",f1,f2);for(i=3;i=5;i++){ f=f1+f2; printf("%d",f);f1=f2; f2=f;}printf("\n");}程序运行后的输出结果是 【 1 0 】 。
考题
下面程序的输出结果是 ( ) main( ) { int i,f1,f2; f1=f2=1; for(i=0;i<4;i+ +) { printf(”%d%d”,f1,f2); f1+ =f2; f2+ =f1; } }A.1 2 3 4 5 6 7 8B.1 1 2 3 5 8 13 21C.1 1 3 5 7 9 11 13D.1 3 5 7 9 11 13 15
考题
有以下程序 int f(int n) { if(n==1)return 1; else return f(n-1)+1;} main() { int i,j=0; for(i=1;i<3;i++)j+=f(i); printf("%d\n",j);} 程序运行后的输出结果是A.4B.3C.2D.1
考题
请完成下列Java程序:计算下列级数之和,直到该项之绝对值小于0.001为止。S=1/1! -1/2! +1/3! -1/4! +注意:请勿改动main()主方法和其他已有的语句内容,仅在横线处填入适当的语句。程序运行结果如下:i=1 s=1.0i=2 s=0.5i=3 s=0.6666666666666666i=4 s=0.625i=5 s=0.6333333333333333i=6 s=0.6319444444444444public class exl3_2{public static void main(Stfing[] args){double s=0.0,sign=-1.0,t,f=1.0;for(int i=1;;i++){f=f*i;__________;t=sign/f;if(__________)break;s=s+t;System.out.prinfln("i="+i+"s="+s);}}}
考题
有如下程序: #includeiostream usingnamespacestd; intmain(){ intf,f1=0,f2=1 for(inti=3;i=6;i++){ f=f1+f2: f1=f2:f2=f } coutfendl; return0; } 运行时的输出结果是()。A.2B.3C.5D.8
考题
下列程序的功能是求算式:1-1/24-1/3-1/4+…前80项之和。 PrivateSub Commandl Click( ) Dim i asinteger,S assingle.f as integer s=0:f=1 For i=1To 30 s=s+f/i f=__________ Next i Debug.Print”1-1/2+1/3—1/4+…=”:s End Sub 横线处应填写的内容是( )。A.1*fB.-l*fC.1*iD.-1*i
考题
下列程序的执行结果是(, )。 a=75 1f a>90 Then i=4 1f a>80 Then i=3 1f a>70 Then i=2 1f a>60 Then i=1 Print”i=”;iA.i=1B.i=2C.i=3D.i=4
考题
有以下程序: int f(int n) { if (n==1) return 1; else return f(n-1)+1; } main() { int i,j=0; for(i=i;i<3;i++) j+=f(i); printf("%d\n",j); } 程序运行后的输出结果是( )。A.4B.3C.2D.1
考题
以下程序的输出结果是( )。 include void main() {int f,f1,f2,i; f1=0;f2=1; printf("%
以下程序的输出结果是( )。 include<stdio.h> void main() {int f,f1,f2,i; f1=0;f2=1; printf("%d%d",f1,f2); for(i=3;i<=5;i++) {f=-f1+f2,printf("%d",f); f2=f1;f1=f; } printf("\n"); }
考题
多选题Which two are valid declarations of a float?()Afloat f = 1F;Bfloat f = 1.0.;Cfloat f = ‘1’;Dfloat f = “1”;Efloat f = 1.0d;
考题
单选题能得到以下数据正确输出结果的FORTRAN语句是() X=1.34 M=3 Y=1.25A
100 FORMAT( 1X, F6.3, I3, E9.4 )B
100 FORMAT( 1X, 2F8.3, I3 )C
100 FORMAT( 1X, F8.4, I3, F3.1 )D
100 FORMAT( 1X, F8.4, 2( 1X, I3) )
考题
多选题在资金的等值计算中,i,n 为定值,下列等式中不正确的是( )。A(F/P,i,n)= (F/A,i,n)·(P/A,i,n)B(F/P,i,n)= (F/A,i,n)·(A/P,i,n)C(F/P,i,n)·(P/A,i,n)·(A/F,i,n)=1D(F/P,i,n1+n2)= (F/P,i,n1)·(F/P,i,n2)E(F/P,i,n)·(P/A,i,n)·(A/P,i,n)=1
考题
多选题下列选项中,能有效地描述浮点数的有()。AFloat foo = -1;BFloat foo = 1.0;CFloat foo = 42e1;DFloat foo = 2.02f;EFloat foo = 3.03d;FFloat foo = 0x0123;
考题
单选题以下定义语句中正确的是( )。A
float a=1,*b=a,*c=b;B
int a=b=0;C
char A=65+1,b='b';D
double a=0.0;b=1.1;
考题
多选题Which two cause a compiler error?()Afloat[] = new float(3);Bfloat f2[] = new float[];Cfloat[] f1 = new float[3];Dfloat f3[] = new float[3];Efloat f5[] = { 1.0f, 2.0f, 2.0f };Ffloat f4[] = new float[] { 1.0f. 2.0f. 3.0f};
考题
多选题Which three are valid declarations of a float? ()AFloat foo = -1;BFloat foo = 1.0;CFloat foo = 42e1;DFloat foo = 2.02f;EFloat foo = 3.03d;FFloat foo = 0x0123;
考题
多选题Which the three are valid declarations of a float?()Afloat foo = -1;Bfloat foo = 1.0;Cfloat foo = 42el:Dfloat foo = 2.02f:Efloat foo = 3.03d:
考题
多选题Which of the following statements are legal?()Along l = 4990;Bint i = 4L;Cfloat f = 1.1;Ddouble d = 34.4;Edouble t = 0.9F;
考题
单选题如果已经定义了方法int f(bool b, int i),则以下方法中,哪一个不是合法的重载方法()。A
double f(bool b, int i)B
int f(double d, int i)C
int f(bool b,int i, double d)D
double f(bool d, int j)
热门标签
最新试卷