Skip to content

Instantly share code, notes, and snippets.

@hiyorineko
Created September 21, 2013 14:18
Show Gist options
  • Save hiyorineko/6651059 to your computer and use it in GitHub Desktop.
Save hiyorineko/6651059 to your computer and use it in GitHub Desktop.
100まで1ずつ足し続けるコード
public class Tasu{
public static void main(String[] args){
int A = 0;
for(A=0;A<=100;A++){
System.out.println(A);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment