blob: ed7731fcc3cddcaab46941389a9bab99b9e73167 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.lang.Math;
class Times2 {
static void doubleArray(double[] input){
for (int i = 0; i < input.length; i++){
input[i] = input[i] * 2;
}
}
public static void main(String[] args) throws java.io.IOException{
double[] convertable = {1,2.36,4,6,8,20};
for(int i = 0; i < convertable.length;i++){
System.out.println(convertable[i]);
}
doubleArray(convertable);
System.out.println("converted");
for(int i = 0; i < convertable.length;i++){
System.out.println(convertable[i]);
}
}
}
//By msglm; Licensed under the AGPL v3
|