This also applies when the entry is a number.
For example, if the program prompts the user to enter an integer value and the user wants to enter the number 12, then he/she would type the keys '1' and '2', which will cause keyboard to transmit the ASCII codes 00110001 for '1' and 00110010 for '2'
On the other hand, the integer value 12 is represented inside the computer by the 2's complement code 00001100.
Therefore, the ASCII codes in the input must first be transformed into a 2's complement representation (by a pretty complicated process)
After you read in a line (consisting of ASCII codes) from the keyboard using:
BufferedReader stdin = new BufferedReader (new InputStreamReader(System.in)); String s = stdin.readLine();You can convert this string of ASCII codes into a 2's complement representation with the parseInt() library function:
int i = Integer.parseInt(s);
The following material will basically show you what is going on inside this parseInt() library function....
I will use the input string "12" - which actually consists of the two character ASCII codes 00110001 and 00110010
The output 2's complement representation for the value 12 is ofcourse 00001100
The representation for the character '1' is 00110001 (binary)
The (8 bit) representation for the integer 1 is 00000001 (binary)
So to obtain the value that is represented by the character '1', we subtract 00110000 from the ASCII code for '1' (00110001):
'1' -----> 00110001 - 00110000 --------------- 00000001
'1' -----> 00110001 - (int) '0' --------------- 00000001
The input "12" is processed from left to right. When the program processes the first digit '1', it performs the following calculation:
value = 0; value = (int) '1' - (int) '0';This will assign the integer 1 to value (i.e., value = 00000000000000000000000000000001(2));
This can achieved by the following statement:
value = 10*value + ( (int) '2' - (int) '0' ); ^ ^ | | | This difference produces the integer value 2 | Since value was 1, this multiplication results in 10The above statement will assign the integer 12 to variable value (i.e., value = 00000000000000000000000000001100(2));
If you really must know, the computer performs all the operations in binary:
10 = 00001010 value = 00000000000000000000000000000001 * ---------------------------------------------------- 10*value = 00000000000000000000000000001010 '2' - '0' = 00000010 + ---------------------------------------------------- 00000000000000000000000000001100 ---> represents 12
// parseInt(s): returns 10's complement integer representation for string s public static int myParseInt(String s) { char digit[]; // Used to store individual char in String s int value, sign; int pos; int len; digit = s.toCharArray(); // Convert s to a character array // so we can access the individual characters /* ------- Check for sign ------- */ if (digit[0] == '-') { sign = -1; for ( int i = 0; i < digit.length-1; i++) // Move digits over... digit[i] = digit[i+1]; len = digit.length - 1; // 1 less digit in input } else { sign = 1; len = digit.length; // len = # digit in input } /* ------------------------------------------ Compute the absolute value of the number ------------------------------------------ */ value = 0; for (int k = len-1; k >=0; k--) { pos = (len - 1) - k; value = value + ((int)digit[k] - 48) * Power( pos ); // Or use '0' for 48 } /* ================================================================== Check if we need to negate the binary 2's compl code for neg value ================================================================== */ if (sign == -1) value = -value; // This statement in Java will // compute the negative 2's compl value // (I.e.: flip the bits and add 1 !!) return(value); // Return a BINARY 2's compl code } |
The parseInt method has one additional step not discussed, namely: checking for a "minus" symbol. This step is relatively easy....
The following program is a "demo" version of the parseInt method that will spit out a lot of intermdiate data to show you what's going on in the process: AtoiDemo.java
So it you have an integer variable and this variable contains the 2's complement code for the value 72 (so it has 00000000000000000000000001001000), and you send the binary representation to the terminal, the terminal will promptly print..... the character H !!! (because that's 72 is the ASCII code for H)...
In order to see "72" printed to the terminal, you would have to send these following ASCII codes to the terminal:
00110111 (for '7') and 00110010 (for '2')
java Print72 > out
cat out
od -x outIt will show an "hex dump" of the content of the file. Can you see the ASCII codes ?
System.out.println(....)to print out integers, the function will first convert the 2's complement representation into a String of ASCII codes and then send the ASCII codes to the output.
The process of converting a 2's compl. encoding to ASCII digit string is as follows (I will also use decimal notation because you are most comfortable with this notation. All calculations are done in binary within the computer).
I will use a simple example to illustrate:
00000000000000000000000000001100 | 12 | divide by 00000000000000000000000000001010 | divide by 10 | | Quotient = 00000000000000000000000000000001 | Quotient = 1 Remainder = 00000000000000000000000000000010 | Remainder = 2 | --------------------------------------------------------------------------- Save the remainder and repeat the steps using the quotient (if Q > 0) --------------------------------------------------------------------------- | 00000000000000000000000000000001 | 1 | divide by 00000000000000000000000000001010 | divide by 10 | | Quotient = 00000000000000000000000000000000 | Quotient = 0 Remainder = 00000000000000000000000000000001 | Remainder = 1 | --------------------------------------------------------------------------- Save the remainder and stop (Q = 0) ---------------------------------------------------------------------------
/* --- myToString(): Integer to Ascii conversion function --- */ public static String myToString(int value) { int sign; int remainder[] = new int[100]; char digit[] = new char[100]; // Max 100 digits in number String result; int k; k = 0; /* --------------------------------------- Check sign --------------------------------------- */ if (value < 0) { sign = -1; value = -value; // Absolute value >= 0 } else { sign = 1; } /* --------------------------------------- Get remainders of divisions by 10 --------------------------------------- */ k = 0; while ( value > 0 ) { remainder[k] = value % 10; k++; value = value / 10; } /* --------------------------------------------------------- Convert remainder to "ASCII digits" (ASCII code) --------------------------------------------------------- */ for (int i = 0; i < k; i++) { digit[i] = (char) (remainder[i] + 48); // Or use '0' for 48 } /* --------------------------------------------------------- Make a string from the ASCII digits (*** backwards *** !!!) --------------------------------------------------------- */ result = ""; for (int i = k-1; i >= 0; i--) result = result + digit[i]; // Concatenate the digits backwards /* ======================================================== Add the '-' character to the string if value was negative ======================================================== */ if (sign == -1) { result = "-" + result; // Try: "******" + result for banks } else { result = result; // Does nothing... } return(result); // Returns a String of ASCII codes // for the numeric string that represents // the integer value encoded in the BINARY // number in parameter variable value } |
I also have a "Demo version" of the same program that shows how the process works: click here