kotlin 计算平方_Kotlin程序计算自然数之和

kotlin 计算平方

Given a number number, and we have to calculate the sum of all natural numbers from 1 to number.

鉴于一些数字 ,我们必须从1计算所有自然数的总和数量

Example:

例:

    Input:
    number = 15

    Output:
    120

用于计算Kotlin中自然数之和的程序 (Program to calculate the sum of natural numbers in Kotlin)

package com.includehelp.basic

import java.util.*


//Main Function entry Point of Program
fun main(args: Array<String>) {
    //Input Stream
    val scanner = Scanner(System.`in`)

    //input integer number
    print("Enter Number  : ")
    val number: Int = scanner.nextInt()

    var sum=0

    //Iterate through loop to calculate sum
    for(i in 1..number){
        sum+=i
    }

    //Print Sum
    println("Sum of All Natural Numbers up to $number are : $sum")
}

Output

输出量

Run 1:
Enter Number  : 15
Sum of All Natural Numbers up to 15 are : 120
---
Run 2:
Enter Number  : 99
Sum of All Natural Numbers up to 99 are : 4950
---
Run 3:
Enter Number  : 456
Sum of All Natural Numbers up to 456 are : 104196


翻译自: https://www.includehelp.com/kotlin/calculate-the-sum-of-natural-numbers.aspx

kotlin 计算平方

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值