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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!