Test02.java 202 B

12345678910
  1. class Test02 {
  2. public static void main(String[] args) {
  3. int total = 0;
  4. for (int i = 1; i <= 100; ++i) {
  5. total += i;
  6. }
  7. System.out.println(total);
  8. }
  9. }