import java.util.Scanner;
public class merge_sort
{
public static void main(String[] args)
{
Scanner input= new Scanner (System.in);
System.out.println("Hello, how many numbers there should be in the array?");
int Size=input.nextInt();
Double A []=new Double [Size] ;
System.out.println("Please enter "+ (Size+1)+" real numbers");
for (int z=0;z<Size;z++)
A[z]=input.nextDouble();
int p=0,q=(Size/2+1),r=(Size-1);//assuming that the array with even length.
int L []=new int [4] ;//the left side, sorted array
int R []=new int [4] ;//the right side, sorted array
L[0]=7;L[1]=6;L[2]=2;L[3]=1;
R[0]=5;R[1]=4;R[2]=3;R[3]=8;
for(int i=0;i<4;i++)
System.out.print(L[i]);
System.out.println("");
for(int j=0;j<4;j++)
System.out.print(R[j]);
merge(L,R);
}
我在这行代码中有错误:
A[z]=input.nextDouble();
错误是:类型不匹配:无法从double转换为Double
我被困了几个小时,有人可以帮助我吗?
答案 0 :(得分:2)
Double
是class
类型。 nextDouble
返回基本类型double
。将A
更改为double
数组
double[] A = new double[Size];
答案 1 :(得分:0)
比如Guy的回答,或者你可以改行:
A[z]=input.nextDouble();
为:
A[z]=new Double(input.nextDouble());
答案 2 :(得分:0)
有两种方法可以做到这一点。
使用constructor
运算符调用Double
类new
并传递input.nextDouble()
。
A[z] = new Double(input.nextDouble());
2。
在java 1.5中和之后引入的一个很酷的功能名为autoboxing
所以,你也可以尝试这个。
A[z] = (Double)input.nextDouble();