How do you via for loop to get the number?
I know how the for work.
for (int i = 0; i < 256; i++)
{
System.out.print (i)
//That will print out 0 to 255
}
how do you read by as byte
while (read is not end)
{
// I need to be -128 to 127
for (byte i = 0; i = 256; i++)
{
// This will print out but it go over and over 3 times
}
for (byte i = -128; i != 127 ; i++)
{
//This only go up to -64. I try have change the number to different number than 127 it still -64
}