📄 complete3_5.java
字号:
package questions.c3;
public class Complete3_5 {
public static void main( String[] args ) {
if ( args.length == 0 ) {
System.out.println( "Run again and specify a parameter");
} else {
String s = args[0];
System.out.println( "As a string, the input is " + s);
// your code goes here
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -