看板 learner
作者 標題 (問題)JAVA試題 求解答+過程
時間 2013年12月19日 Thu. PM 03:43:18
一.請寫出下列敘述執行後之x值
(a) x = Math.min(2.3,12.7);
(b) x = Math.floor(Math.PI);
(C) x = Math.floor(-8.3);
(b) x = Math.ceil(1.5);
(e) x = Math.abs(-1.4);
(f) x = Math.sqrt(625.0);
(g) x = Math.pow(2.0,3.0);
(h) x = Math.max(-5.6,Math ceil(-5.6));
二.請利用下列宣告中的變數,寫出單一敘述式,能夠隨機產生下列每一組的整數集合中的某個數字.
Random rNum = new Random();
(a)1,2,3,4,5
(b)2,4,6,8,10,12
三.請寫出下列敘述執行後結果
int a[] = {1,2,3,4,5};
int total = 10;
for(int num : a)
total += num;
System.out.printf("x = %d",total);
四.請寫出下列敘述執行後結果
int a[] = {1,2,3,4,5};
System.out.printf("a=%d",a[2]);
modify(a[2],a);
System.out.printf("a=%d",a[2]);
void modify(int x,int b[])
{
int i = 0;
x = x + 5;
while(i<b.length)
b[i] = 2*b[i];
}
--
※ 作者: lin8008008 時間: 2013-12-19 15:43:18
※ 看板: learner 文章推薦值: 0 目前人氣: 0 累積人氣: 425
回列表(←)
分享