⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 对象为c语言子集的词法分析程序 个人的课程代码
💻 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 + -