Skip to content

Instantly share code, notes, and snippets.

@johobemax
Created June 25, 2010 05:57
Show Gist options
  • Save johobemax/452482 to your computer and use it in GitHub Desktop.
Save johobemax/452482 to your computer and use it in GitHub Desktop.
public class StringTest3
{
public static void main(String[] args)
{
String a = "Java ";
for(int i=0; i<100; i++)
{
a = a + i;
System.out.println(a);
}
}
}
@johobemax
Copy link
Author

String型に値を加えていくテスト。

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