Created
April 14, 2014 16:38
-
-
Save shoheikawano/10663841 to your computer and use it in GitHub Desktop.
(初心者メモ)Javaでの足し算で予想外な挙動とその対策 ref: http://qiita.com/shohe_i/items/6e34d7ac2704bff965b3
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
public class Test { | |
public static void main(String[] args) { | |
System.out.println("加算の結果は" + 3 + 2 + "です。"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment