You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
389 B

package main
import (
student "student"
"lib"
)
func main() {
i := 0
for i < 30 {
a := lib.RandInt()
b := lib.RandInt()
aCopy := a
bCopy := b
student.Swap(&a, &b)
if a != bCopy {
lib.Fatalf("Swap(%d, %d), a == %d instead of %d", aCopy, bCopy, a, bCopy)
}
if b != aCopy {
lib.Fatalf("Swap(%d, %d), b == %d instead of %d", aCopy, bCopy, b, aCopy)
}
i++
}
}