manipul.cpp
来自「这是《C/C++程序员实用大全》上面的源码」· C++ 代码 · 共 12 行
CPP
12 行
#include <iostream.h>
ostream& attention(ostream& cout)
{
return(cout << '\a');
};
void main(void)
{
cout << attention << "The boss is coming to your office...\n";
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?