?? 詞法分析.cpp
字號:
// 詞法分析.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "stdio.h"
#include <iostream>
#include <string>
using namespace std;
//TOKEN種類
class Token
{
public:
int line;
string lex;
string sem;
Token(){}
Token(int _line, string _lex, string _sem)
{
line=_line;
lex=_lex;
sem=_sem;
}
};
//靜態變量區
static char buf[1000];
static int iter=0;
int main(int argc, char* argv[])
{
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -