提交 b1db3337 编写于 作者: M Mars Liu

add hello world

上级 25b15fc7
# Hello World
以下 `Hello World` 程序中,能够正确输出内容的是:
## A
```java
package app;
public class App {
public static void main(String[] args){
System.out.println("Hello World");
}
}
```
## B
```java
package app;
public class App {
public int main(){
System.out.printf("Hello World");
return 0;
}
}
```
## C
```java
package app;
public class App {
public static void main(String[] args){
println("Hello World");
}
}
```
## D
```java
package app;
import stdout
public class App {
public int main(){
print("Hello World\n");
return 0;
}
}
```
{
"type": "code_options",
"author": "刘鑫",
"source": "HelloWorld.md"
}
\ No newline at end of file
......@@ -2,5 +2,5 @@
"node_id": "569d5e11c4fc5de7844053d9a733c5e8",
"keywords": [],
"children": [],
"export": []
"export": ["HelloWorld.json"]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册