hr
jaargang -23 - laatste artikel 22-11 18:00 - 75418 artikelen -

Home
Forum
Lid worden

Leden
Gebruikersnaam:

Wachtwoord:

Login onthouden

Login via:
Wachtwoord vergeten.

Het Forum

· [MED] Mededelingen
· [SUG] Suggesties
· [M&S] Moppen/Spelletjes
· [CUL] Kunst & Cultuur
· [OFT] Offtopic
· [G&C] Games & Computers
· [WMO] Wat me is overkomen
· [VDS] Vragen des levens
· [POL] Politiek
· [CON] Consumenten forum


moppen en spelletjes - moppen en spelletjes - moppen en spelletjes


1 2 3 4 .... 24 25 26 [27] 28 29 30 156 157 158 159

Ctrl - V

28-11-08 22:29:06
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
http://shsd.k12.ar.us/SHHS/CREATORS/creators06/jaimeswebpage/Links/imdb-logo.jpg

28-11-08 22:51:32
Cur10s1ty
Senior lid

WMRindex: 159
OTindex: 40
Beetje een lange, maar wel een leuke :P

import java.util.*;
public class SearchTestDemo {
public static void main(String args[]) throws Exception {
int[] array = {2, 5, -2, 6, -3, 8, 0, -7, -9, 4};
//Ensure array sorted
Arrays.sort(array);
printArray("Sorted array", array);
//Search for element in array
int index = Arrays.binarySearch(array, 2);
System.out.println("Found 2 @ " + index);
//Search for element not in array (-(insertion point(=5 hier))-1
index = Arrays.binarySearch(array, 1);
System.out.println("Didn't find 1 @ " + index);
//Insert
int newIndex = -index - 1;
array = insertElement(array, 1, newIndex);
printArray("With 1 added", array);
}
private static void printArray(String message, int array[]) {
System.out.println(message+ ": [length: " + array.length + "]");
//Print out sorted array elements
for(int i=0, n=array.length; i<n; i++) {
if(i != 0) System.out.print(", ");
System.out.print(array[i]);
}
System.out.println();
}
private static int[] insertElement(int original[], int element, int index) {
int length = original.length;
int destination[] = new int[length+1];
//Je wilt '1' op de juiste positie toevoegen
System.arraycopy(original,0, destination, 0, index);
destination[index]= element;
System.arraycopy(original,index, destination, index+1, length-index);
return destination;
}
}

28-11-08 22:53:54
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
http://www.cannonfilms.co.uk/webposters/h/Honeybun%20(1988)%20[Honneponnetje]%20[NETHERLANDS%20VHS].jpg

29-11-08 00:38:39
nietmeer
Chris heeft verzonden 28-11-2008 22:18:
hoi
Chris heeft verzonden 28-11-2008 22:40:
hannahpuh

29-11-08 00:44:27
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
http://www.dewielersite.net/db2/wielersite/afbtxt/zeeland.gif

29-11-08 00:49:58
nietmeer
http://www.nafras.nl/velddag/logo%20de%20adelaar.gif

29-11-08 01:13:43
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
https://portal.skipov.nl/spv/Liedjes/Berend%20Botje.jpg

29-11-08 07:55:03
Giovanni
Oudgediende


WMRindex: 3.218
OTindex: 72.766
http://img377.imageshack.us/img377/9128/naamloosav6.jpg

29-11-08 17:09:02
Clio
Erelid


WMRindex: 90
OTindex: 2.794
S
I walk a lonely road
The only one that I have ever known
Don't know where it goes
But it's home to me and I walk alone
I walk this empty street on the boulevard of broken dreams
When the city sleeps and I'm the only one and I walk alone
I walk alone I walk alone, I walk alone I walk a....

My shadow's the only one that walks beside me
My shallow heart's the only thing that's beating
Sometimes I wish someone out there will find me
till then I walk alone

I'm walking down the line
That divides me somewhere in my mind
On the borderline of the edge
And where I walk alone
Read between the lines what's fucked up and everything's alright
Check my vital signs no, I'm still alive
And I walk alone, I walk alone I walk alone, I walk alone I walk a....

My shadow's the only one that walks beside me
My shallow heart's the only thing that's beating
Sometimes I wish someone out there will find me
till then I walk alone

I walk alone I walk a

I walk this empty street on the boulevard of broken dreams
When the city sleeps
And I'm the only one and I walk alone

My shadow's the only one that walks beside me
My shallow heart's the only thing that's beating
Sometimes I wish someone out there will find me
Till then I walk alone

29-11-08 17:09:43
Giovanni
Oudgediende


WMRindex: 3.218
OTindex: 72.766
http://farm3.static.flickr.com/2229/1750123260_6984d1ddbc.jpg?v=0

29-11-08 17:19:10
heraux
Oudgediende


WMRindex: 9.537
OTindex: 27.258
T S
http://www.nga.gov/kids/zone/paintbox.htm

29-11-08 19:01:30
Giovanni
Oudgediende


WMRindex: 3.218
OTindex: 72.766
http://farm3.static.flickr.com/2150/2036595925_ffa8bc7918.jpg?v=0

29-11-08 19:26:10
nietmeer
[color=blue][/color]

29-11-08 21:13:45
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
Aram!!!!

Emmertje

01-12-08 00:17:00
gwcbakker
Oudgediende


WMRindex: 7.126
OTindex: 2.741
http://www.damon.nl/images/boeken/42e2546343543.jpg

01-12-08 00:17:16
gwcbakker
Oudgediende


WMRindex: 7.126
OTindex: 2.741
http://www.damon.nl/images/boeken/42e2546343543.jpg

01-12-08 00:21:06
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
http://yakwj.maakjestart.nl/images/troy.jpg

01-12-08 01:05:55
Henise
Oudgediende


WMRindex: 6.287
OTindex: 6.684
één

01-12-08 01:23:45
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
gelungen

02-12-08 12:00:57
Arya
Oudgediende


WMRindex: 746
OTindex: 40.038
trala

02-12-08 17:10:07
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
http://nl.wikipedia.org/wiki/Transformator

06-12-08 22:04:28
Lamp
Erelid


WMRindex: 705
OTindex: 1.901
S
zelfmoordpogingen doen. Het is dus belangrijk dat we onderschijt maken tussen zelfmoord en een zelfmoord poging. Zelfmoord gebeurt dus over het algemeen veel door ouderen maar ook veel door mannen en zelfmoord pogingen worden meer gedaan

--------------------------------------------
Serieus.. die gast van deze spreekbeurt schreef onderschijt in plaats van onderscheid :P

06-12-08 22:11:23
emmertje
Oudgediende


WMRindex: 17.961
OTindex: 66.902
http://spinner.punt.nl/upload/lager-bier.jpg

07-12-08 10:57:11
Giovanni
Oudgediende


WMRindex: 3.218
OTindex: 72.766
http://farm3.static.flickr.com/2085/2304282273_8e14f0157d.jpg?v=0

07-12-08 13:34:57
pepijn999
Senior lid


WMRindex: 162
OTindex: 1.021
Fleetwood Mac

Je moet ingelogd zijn om te kunnen reageren!

1 2 3 4 .... 24 25 26 [27] 28 29 30 156 157 158 159

WMRphp ver. 7.1 secs - Smalle versie - terug naar boven