题目内容

能够正确计算30度余弦值的是()。

A. double d=Math.cos(30)
B. double d=Math.cosine(30)
C. double d=Math.cos(Math.toRadians(30))
D. double d=Math.cos(Math.toDegrees(30))

查看答案
更多问题

要产生[20,999]之间的随机整数可以使用()表达式。

A. (int)(20+Math.random()*97)
B. (int)Math.random()*999
C. 20+(int)(Math.random()*980)
D. 20+(int)Math.random()*980

随机生成一个整数,采用Random类的()方法。

A. nextInteger( )
B. nextInt( )
C. getRandomInt( )
D. nextFloat( )

以下()代码段完成两个大整数x和y的相加计算。

A. long x=634764734;long y=37463746;long z=x+y;
B. int x=123456;int y=98873;int z=x+y;
C. BigInteger x=new BigInteger("345");BigInteger y=new BigInteger("123");BigInteger z=x.add(y);
D. BigInteger x=new BigInteger("345");BigInteger y=new BigInteger("123");BigInteger z=x.subtract(y);

利用()可以启动一个应用程序。

A. runtime.exec(“应用程序名称”)
B. Runtime.getRuntime( ).exec(“应用程序名称”)
C. start 应用程序名称
D. java 应用程序名称

答案查题题库