all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 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