📄 lexer_cpp.sample
字号:
/*
* Sample preview code
* This is a block comment
*/
#include <iostream> // this is a line comment
#include <cstdio>
/**
* This is a documentation comment block
* @param xxx does this (this is the documentation keyword)
* @authr some user (this is the documentation keyword error)
*/
int main(int argc, char **argv)
{
/// This is a documentation comment line
int numbers[20];
int average = 0;
char ch = '\n';
for (int i = 0; i < 20; ++i) // a breakpoint is set
{
numbers[i] = i; // active line (during debugging)
total += i; // error line
}
average = total / 20;
std::cout << numbers[0] << '\n' << numbers[19] << '\n';
std::cout << "total:" << total << "average:" << average << '\n';
std::cout << "Press any key..." << '\n';
getch();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -