総数の和 by avaice

説明

総数の和を求めるプログラム

ソースコード

playgroundで試す
fn calcTotal(x){
    var i = 0
    var total = 0
    while(i <= x){
        total = total + i
        i = i + 1
    }
    return total
}

var x = parse("int", input("総数の和を求めます: "))
var total = calcTotal(x)
print(total)