📄 main.cpp
字号:
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
#include "LexicalAnalyzer.h"
int main()
{
string feature;
string token;
LexicalAnalyzer la("src.c");
do {
feature = la.getNextToken(token);
cout<<feature<<setw(4)<<'\t'<<token<<endl;
} while (feature!="termination");
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -