close
Blogtrottr
Yahoo!奇摩知識+ - 分類問答 - 電腦網路 - 發問中
Yahoo!奇摩知識+ - 分類問答 - 電腦網路 - 發問中
JAVA random 隨機產生亂數
May 27th 2013, 16:00

我想隨機產生兩個陣列arr1&arr2 之後將其相乘儲存到另一個陣列result
但 我的arr1&arr2 產生的數值是一樣的 且result產生的數值也不對
請問是法方面要修改呢??
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.print("Random test");
int[] arr1 = new int[5];
int[] arr2 = new int[5];
int[] result = new int[5];
int i ;

//建立陣列 arr1
System.out.print("陣列 arr1=[");
for( i=0;i<arr1.length;i++)
{
arr1[i] = (int)(Math.random()*50);
System.out.print(arr1[i]+"\b");
}
System.out.println("]");

//建立陣列arr2
System.out.print("陣列 arr2=[");
for( i=0;i<arr2.length;i++)
{
arr2[i] = (int)(Math.random()*50);
System.out.print(arr1[i]+"\b");
}
System.out.println("]");

//建立兩陣列相乘
System.out.println("兩陣列相乘得到result陣列");
System.out.print("result=[");
for( i=0;i<result.length;i++)
{
int sum ;
sum = arr1[i] * arr2[i];
System.out.print(sum+"\b");

}
System.out.print("]");

}

This entry passed through the Full-Text RSS service — if this is your content and you're reading it on someone else's site, please read the FAQ at fivefilters.org/content-only/faq.php#publishers. Five Filters recommends: 'You Say What You Like, Because They Like What You Say' - http://www.medialens.org/index.php/alerts/alert-archive/alerts-2013/731-you-say-what-you-like-because-they-like-what-you-say.html

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 sdfgdf2 的頭像
    sdfgdf2

    中文名字日文翻譯, 中文翻譯日文名字, 名字日文翻譯, 日文翻譯名字, 日文翻譯字典發音, 日文翻譯網 漢字,

    sdfgdf2 發表在 痞客邦 留言(0) 人氣()