java 输出hello world
·
在 Java 中,可以使用 System.out.println
来输出 "hello world"。
例如:
public class Main {
public static void main(String[] args) {
System.out.println("hello world");
}
}
在这段代码中,System.out.println
会将字符串 "hello world" 输出到控制台。
注意:
- 在 Java 中,类名的首字母必须大写。
main
方法是程序的入口点,必须要有这个方法才能运行程序。- `
更多推荐
已为社区贡献4条内容
所有评论(0)