intro27.cpp

来自「hello everybody. good lucky to you」· C++ 代码 · 共 22 行

CPP
22
字号
// INTRO27.CPP--Example from Chapter 3, "An Introduction to C++"

#include <iostream.h>
#include <conio.h>

void tally(void);

int main()
{
	while ( getch() != 'q')
		tally();

	return 0;
}

void tally(void)
{
	static int called = 0;
	called++;
	cout << "Function tally called " << called <<" times\n";
}

⌨️ 快捷键说明

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