当前位置: 代码迷 >> 综合 >> There are N children
  详细解决方案

There are N children

热度:110   发布时间:2023-11-27 04:08:16.0

在这里插入图片描述
就是个累加的过程,非常基础。

import java.util.Scanner;public class Main {
    public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);while(sc.hasNext()) {
    int n = sc.nextInt();int sum = 0;for (int i = 1; i <= n; i++) {
    sum = sum + i;}System.out.println(sum);}}
}
  相关解决方案