//cd c:\JavaTry\Application1 //javac Repeat.java //set CLASSPATH=. //java Repeat class Repeat { public static void main(String[] args) { int total = 0; //1から10までの和 for(int i = 0; i <= 10; i++) { total = total + i; } System.out.println("total = " + total); } }