2018年10月1日月曜日

【Javascript】三角数の和を求める。

function sumTriangularNumbers(n) {
  return n < 0 ? 0 : n * (n + 1) * (n + 2) / 6;
}

0 件のコメント:

コメントを投稿