- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
private static void slowDownABit() {
for (int i = 0; i < 100; i++) {
new Thread() {
@Override
public void run() {
for (int i = 0; i < 10000000; i++) {
double d1 = Math.random() + 1;
double d2 = Math.random() + 1;
double d3 = Math.random() + 1;
double d4 = Math.random() + 1;
double d = d1 * d2 / d3 / d4 * Math.sin(Math.random());
}
}
}.start();
}
}
guest 06.09.2011 15:54 # 0
roman-kashitsyn 06.09.2011 15:56 # 0
akkuch 06.09.2011 16:16 # 0
absolut 06.09.2011 16:50 # +1
roman-kashitsyn 06.09.2011 16:57 # 0
ling 06.09.2011 17:19 # 0
roman-kashitsyn 06.09.2011 17:27 # +1
Lure Of Chaos 06.09.2011 18:37 # 0
SmackMyBitchUp 08.09.2011 16:02 # 0
МС Буммер.
Lure Of Chaos 06.09.2011 16:26 # +1
guest 16.09.2011 16:14 # 0
roman-kashitsyn 16.09.2011 16:18 # 0
guest8 09.04.2019 11:27 # −999