H@CK DEFENCE
A BLOG ON NETWORK SECURITY, ETHICAL HACKING AND PROGRAMMING
Welcome To The World Of Hacking
Learn Hacking|Teach Hacking|Learn To Secure|Learn To Code
Monday
JAVA PROGRAMMING TUTORIAL 20: RANDOM VARIABLE
import java.util.Random;
public class HackDefence{
public static void main(String[] args){
Random dice = new Random();
int number;
for(int counter=1; counter<6; counter++){
number = dice.nextInt(6);
System.out.println(number);
}
}
}
OUTPUT:
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment