説明
総数の和を求めるプログラム
ソースコード
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)