Skip to content

Instantly share code, notes, and snippets.

@johobemax
Created June 25, 2010 05:22
Show Gist options
  • Save johobemax/452449 to your computer and use it in GitHub Desktop.
Save johobemax/452449 to your computer and use it in GitHub Desktop.
public class StringTest
{
public static void main(String[] args)
{
String a = "Java ";
String b = "Programming";
String c = a+b;
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
}
@johobemax
Copy link
Author

6.25
String型データの結合テスト

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment