Skip to content

Instantly share code, notes, and snippets.

@takahashi-h5
Created August 26, 2019 13:27
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 takahashi-h5/c3d8a72060a4655dfd364df7ea899bfb to your computer and use it in GitHub Desktop.
Save takahashi-h5/c3d8a72060a4655dfd364df7ea899bfb to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
int i = 0;
for(i = 0;i<5;i++)
; // 空ステートメントが5回ループされる
System.out.println(i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment