📄 localvarible.java
字号:
//LocalVarible.java
//this program is about the use of the parameters of the function
public class LocalVarible{
int i=2;
double d=7.6d;
void mv()
{
int x=7,y=8;
int s;
s = x*y;
System.out.println("x="+x+", y="+y+", s="+s);
System.out.println("i="+i);
System.out.println("d="+d);
}
public static void main(String args[]){
LocalVarible l = new LocalVarible();
l.mv();
System.out.println("the variable i="+l.i);
System.out.println("the variable d="+l.d);
System.out.println("the variable x="+x);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -