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

📄 test.cpp

📁 pl0文法编译器
💻 CPP
字号:
#include "IntpreSymSet.h"
#include "Interpreter.h"
#include "Code.h"
#include <conio.h>
#include <iostream>
using namespace std;

int main()
{
	cout<<"PL/0 Interpreter version1.0 \nwriten by 33060406 马永焘 2006/3\n";
	
	string fileName;
	cout<<"object file(*.pl0): ";
	cin>>fileName;

	Interpreter interpreter(fileName);

	interpreter.interpret();
	cout<<endl;

	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -