/*
* Copyright © 2008 - 2009 it.ibluespace.com. All rights reserved.
*/
public class ByteExample
{
public static void main(String args[])
{
byte minValue = Byte.MIN_VALUE;
byte maxValue = Byte.MAX_VALUE;
System.out.println("The minimum value of a byte is: " + minValue);
System.out.println("The maximum value of a byte is: " + maxValue);
}
}
|