Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Random java operators
make random operators or produce them for displaying? in the 2nd case…try this code
public class ops { import java.util.*; public static char returnOp() { Random r = new Random(); char ops = {'!','@','#','$'}; //etc….. return ops[r.nextInt(ops.length)]; } }
i didnt compile that or anything, so you may have mod it a bit…but its a PoC