User profile: Code Oranj

User info
User name:Code Oranj
History
Joined:
Number of posts:6
Latest posts:

Need help with lexical analyzer
I solved it. [code] //class Scan int main() { string characters; string convertToken(i...

Need help with lexical analyzer
before it printed: A <LETTER/WORD> + <PLUS> 1 <DIGIT> = <ASSIGN> word< LETTER/WORD> now that i am ...

Need help with lexical analyzer
It is part of the point of the assignment. Setting up all the code you cannot see is another part. A...

Need help with lexical analyzer
how?

Need help with lexical analyzer
[code] string convertToken(int token) { switch (token) { case LETTER: return "<LETTER/WORD>";...