python/番外篇/code/Test02.java

10 lines
202 B
Java
Raw Permalink Normal View History

2024-12-04 00:04:56 +08:00
class Test02 {
public static void main(String[] args) {
int total = 0;
for (int i = 1; i <= 100; ++i) {
total += i;
}
System.out.println(total);
}
}