Guest User

Untitled

a guest
Dec 8th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.26 KB | None | 0 0
  1. alias prime {
  2.   var %x $1
  3.   var %y 1
  4.   var %factors 0
  5.   while (%y <= %x) {
  6.     var %fct %x % %y
  7.     if (%fct == 0) { inc %factors }
  8.     inc %y
  9.   }
  10.   if (%factors == 2) {
  11.     msg $active %x is a prime.
  12.   }
  13.   else {
  14.     msg $active %x is not a prime.
  15.   }
  16. }
Add Comment
Please, Sign In to add comment