📄 debug2_3.java
字号:
package questions.c2;
public class Debug2_3 {
public static void main( String[] args ) {
char c = 'x';
int x = 17;
double y = 21.4;
if ( x * y > 400 )
switch ( c ) {
case 'a':
System.out.println( c );
default
System.out.println( "Not 'a'" );
}
x = 24;
else {
x = 25;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -