Guest User

Untitled

a guest
Jul 11th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. algcong := proc (a, c, m, x0i, n) local x, x0, i; x0 := x0i; for i to n do x := `mod`(a*x0+c, m); x0 := x; print(x) end do end proc
Add Comment
Please, Sign In to add comment