Skip to content

Instantly share code, notes, and snippets.

@xodhx4
Created February 18, 2020 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xodhx4/797dc4b54980999b09c7d4297a0c188d to your computer and use it in GitHub Desktop.
Save xodhx4/797dc4b54980999b09c7d4297a0c188d to your computer and use it in GitHub Desktop.
[Fotmatted String] 스트링을 포맷팅해서 사용하는 법 #String #format
public static void stringFormat() {
for (int i=0; i<10; i++) {
String.format("%d%d", i, i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment