lexer_cpp.sample

来自「非常好用的可移植的多平台C/C++源代码编辑器」· SAMPLE 代码 · 共 33 行

SAMPLE
33
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?