Created
May 22, 2015 04:49
-
-
Save nvsofts/d71cca82a616222a4a09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [nvsofts@aya ~]$ cat Test.java | |
| import java.lang.*; | |
| import java.io.*; | |
| public class Test | |
| { | |
| public static void main(String[] args) | |
| { | |
| String company = "未経験者、中途者の熱意" | |
| int i = Integer.parseInt(company); | |
| while (true) { | |
| if (i == 0) { | |
| break; | |
| } | |
| System.out.println("笑顔"); | |
| } | |
| } | |
| } | |
| [nvsofts@aya ~]$ javac Test.java | |
| Test.java:8: エラー: ';'がありません | |
| String company = "未経験者、中途者の熱意" | |
| ^ | |
| エラー1個 | |
| [nvsofts@aya ~]$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment