Skip to content

Instantly share code, notes, and snippets.

@hiyorineko
Created September 19, 2013 15:43
Show Gist options
  • Save hiyorineko/6625413 to your computer and use it in GitHub Desktop.
Save hiyorineko/6625413 to your computer and use it in GitHub Desktop.
なぜか2を表示し続けるコード
public class Baisuu{
public static void main(String[] args){
int i=1;
int A=2*i;
for(i=1;A<=32;i++){
System.out.println(A);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment