useplorg.cpp

来自「我学习C++ Primer Plus过程中写下的课后作业的编程代码」· C++ 代码 · 共 15 行

CPP
15
字号
// 10_333_7
// usePlorg.cpp

#include <iostream>
#include "plorg.h"

int main()
{
	plorg plorga;
	plorga.showplorg();
	plorga.resetCI(100);
	std::cout<<"Now the plorga's CI is:\n";
	plorga.showplorg();
	return 0;
}

⌨️ 快捷键说明

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