📄 arrayex.java
字号:
/*
* Created on 2007/03/23
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
/**
* @author BFJ1
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class ArrayEX {
public static void main(String[] args) {
double[] a;
a=new double[5];
double[] b=new double[5];
b[0]=1.2;b[1]=2.1;b[2]=4;b[3]=5.2;b[4]=8.2;
double[] c={1.5,2.4,7.6};
a=b;
System.out.println(a[0]);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -