Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
public class VanDerCorput{
|
||||
public static double vdc(int n){
|
||||
double vdc = 0;
|
||||
int denom = 1;
|
||||
while(n != 0){
|
||||
vdc += n % 2.0 / (denom *= 2);
|
||||
n /= 2;
|
||||
}
|
||||
return vdc;
|
||||
}
|
||||
|
||||
public static void main(String[] args){
|
||||
for(int i = 0; i <= 10; i++){
|
||||
System.out.println(vdc(i));
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue