mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 14:46:28 +08:00
27 lines
567 B
Go
27 lines
567 B
Go
|
// File: iteration_test.go
|
||
|
// Created Time: 2023-08-28
|
||
|
// Author: Reanon (793584285@qq.com)
|
||
|
|
||
|
package chapter_computational_complexity
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
/* Driver Code */
|
||
|
func TestIteration(t *testing.T) {
|
||
|
n := 5
|
||
|
res := forLoop(n)
|
||
|
fmt.Println("\nfor 迴圈的求和結果 res = ", res)
|
||
|
|
||
|
res = whileLoop(n)
|
||
|
fmt.Println("\nwhile 迴圈的求和結果 res = ", res)
|
||
|
|
||
|
res = whileLoopII(n)
|
||
|
fmt.Println("\nwhile 迴圈(兩次更新)求和結果 res = ", res)
|
||
|
|
||
|
resStr := nestedForLoop(n)
|
||
|
fmt.Println("\n雙層 for 迴圈的走訪結果 ", resStr)
|
||
|
}
|