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

Related Posts Plugin for WordPress, Blogger...