programming-examples/java/Numerical_Problems/Java Program to Generate Random Hexadecimal Byte.java
2019-11-15 12:59:38 +01:00

22 lines
593 B
Java

/*
This is the java program to randomly generate a hexadecimal byte. First random decimal byte is generated and then converted to hexadecimal form.
*/
//This is sample program to generate random hexadeciaml bytes
import java.util.Random;
public class Generate_Random_Hex_Bytes
{
public static void main(String args[])
{
Random random = new Random();
int val = random.nextInt();
String Hex = new String();
Hex = Integer.toHexString(val);
System.out.println("Random Hex Byte: " + Hex);
}
}
/*
Random Hex Byte: 63e15d89