vanntar hjálp með forritunar verkefni ef eitthver hefur tíma
Sent: Sun 17. Okt 2010 18:06
jæja núna er ég búin að koma mér í smá vandræði. Er að reyna að gera forritunar verkefni fyri tölvunarfræði 1 (java) í hí og ég veit ekkert og skil ekkert var að pæla hvort eitthver væri að hanga á vaktinni og leiðast sem gæti hjálpað mér. Ég vil ekki bara fá kóðan og skila þannig mig langar að skilja þetta og vita hvað ég er að gera. Ef eitthver hefur tíma og nennir að hjálpa mér þá er verkefnið svona :
3
Assignment
Write a program that fills an array of double of size 1000 with random numbers, then
sorts the array and then searches 1000 times for a random number in the array. It
should find the number in the array that is closest to the number searched for, either a
lower number or a higher number. Finally the program should write the average of the
positive difference between the number searched for and the number found.
The random numbers should be uniformly distributed on the open interval [0, 1[.
To produce such a random number, the following Java code can be used:
/ / P r o d u c e a random number i n [ 0 , 1 [ l i k e t h i s :
x = Math . random ( ) ;
3
Assignment
Write a program that fills an array of double of size 1000 with random numbers, then
sorts the array and then searches 1000 times for a random number in the array. It
should find the number in the array that is closest to the number searched for, either a
lower number or a higher number. Finally the program should write the average of the
positive difference between the number searched for and the number found.
The random numbers should be uniformly distributed on the open interval [0, 1[.
To produce such a random number, the following Java code can be used:
/ / P r o d u c e a random number i n [ 0 , 1 [ l i k e t h i s :
x = Math . random ( ) ;