好的,这是我在真正的编程课上的第一天。我很兴奋,但我不明白怎么知道括号} {去。
编辑:例如,这编译得很好,但跳过最后一步打印“完成”。似乎我的在线编译器应该受到指责:http://ideone.com任何人都可以推荐别的东西吗?
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
for (int x=1; x<=3; x++) {
System.out.println("Number: " +x);
}
System.out.println("Done!");
}
}
谢谢大家!
答案 0 :(得分:1)
下载像Intellij Idea或Eclipse这样的IDE。这些程序将帮助您解决语法错误并在您的机器上编译代码。 Intellij IDEA Eclipse
两者都是免费的。