Question: Write a code in java that will read multiple lines code in a text file and find key tokens. -----------------Text File------------------------------- Class pgm{ int z
Write a code in java that will read multiple lines code in a text file and find key tokens.
-----------------Text File-------------------------------
Class pgm{
int z = 3, p = 2;
int x, y;
y = 55;
x = z * p + 5 - y;
}
-----------------Text File-------------------------------
example of output table:
| Token | Class | Value |
| pgm | ||
| z | $CONST | 3 |
| p | $CONST | 2 |
| x | ||
| y | ||
| 55 | $NumLit | 97 |
| 5 | $Numlit | 5 |
Thanks In advance.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
