Skip to content

Instantly share code, notes, and snippets.

@hiyorineko
Last active December 23, 2015 14:49
Show Gist options
  • Save hiyorineko/6651245 to your computer and use it in GitHub Desktop.
Save hiyorineko/6651245 to your computer and use it in GitHub Desktop.
1+2+3+...+100ってしたいコード 
public class Tasu{
public static void main(String[] args){
int A = 1;
for(int i=1;i<100;i++){//とりあえず100回カウントしてもらう
A = A + i;//ループカウンタさんが全てやってくれました
}
System.out.println(A);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment