Created
August 26, 2019 13:27
-
-
Save takahashi-h5/c3d8a72060a4655dfd364df7ea899bfb to your computer and use it in GitHub Desktop.
This file contains 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 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