Files
Yudong Jin d7b2277d2b Re-translate the Japanese version (#1871)
* Retranslate Japanese docs with GPT-5.4

* Retranslate Japanese code with GPT-5.4
2026-03-30 07:30:15 +08:00

74 lines
1.6 KiB
Kotlin
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* File: iteration.kt
* Created Time: 2024-01-25
* Author: curtishd (1023632660@qq.com)
*/
package chapter_computational_complexity.iteration
/* for ループ */
fun forLoop(n: Int): Int {
var res = 0
// 1, 2, ..., n-1, n を順に加算する
for (i in 1..n) {
res += i
}
return res
}
/* while ループ */
fun whileLoop(n: Int): Int {
var res = 0
var i = 1 // 条件変数を初期化する
// 1, 2, ..., n-1, n を順に加算する
while (i <= n) {
res += i
i++ // 条件変数を更新する
}
return res
}
/* while ループ2回更新 */
fun whileLoopII(n: Int): Int {
var res = 0
var i = 1 // 条件変数を初期化する
// 1, 4, 10, ... を順に加算する
while (i <= n) {
res += i
// 条件変数を更新する
i++
i *= 2
}
return res
}
/* 二重 for ループ */
fun nestedForLoop(n: Int): String {
val res = StringBuilder()
// i = 1, 2, ..., n-1, n とループする
for (i in 1..n) {
// j = 1, 2, ..., n-1, n とループする
for (j in 1..n) {
res.append(" ($i, $j), ")
}
}
return res.toString()
}
/* Driver Code */
fun main() {
val n = 5
var res: Int
res = forLoop(n)
println("\nfor ループの合計結果 res = $res")
res = whileLoop(n)
println("\nwhile ループの合計結果 res = $res")
res = whileLoopII(n)
println("\nwhile ループ (2 回更新) の合計結果 res = $res")
val resStr = nestedForLoop(n)
println("\n二重 for ループの走査結果 $resStr")
}