回覆列表
  • 1 # 百曉餘味

    1: 資料庫查隨即抽取10條QuestionId 放到陣列arrayQuestion中arrayQuestion[0-9]="select top 10 QuestionId ,NewID() as random from Question order by random"2:頁面載入時顯示第一條(定義變數int n=0;) 第一條資料="select QuestionTopic from Question where QuestionId=arrayQuestion[n]"3:button_onclick事件,點選顯示下一條資料 n++; 下一條資料="select QuestionTopic from Question where QuestionId=arrayQuestion[n]" 我想我講的已經夠詳細了。。。。~~

  • 2 # 緣聚與散

    首先:java的Math類提供了一個 random()靜態方法,返回帶正號的 double 值,該值大於等於 0.0 且小於 1.0。返回值是一個偽隨機選擇的數,在該範圍內(近似)均勻分佈。;以下為範例:;//程式碼如下:public class Test24 { /* * 隨機從 1~10 取十個整數,存入陣列 */ public static void main(String[] args) { int [] arr = new int[10]; //構建一個空的一維陣列 for(int i=0;i<arr.length;i++){ int temp = (int)(Math.random()*10)+1;//隨機產生一個 1~10 的整數 arr[i] = temp;//將產生的數新增到陣列 System.out.print(arr[i]+" "); } }}

  • 中秋節和大豐收的關聯?
  • 掘金、開拓者、76人、猛龍接下來將迎來天王山大戰,你認為誰是這4隊勝負的關鍵球員?