📄 pr03001.cpp
字号:
////////////////////////////////////////
// File Name: pr03001.cpp
////////////////////////////////////////
#include <iostream>
// Function prototype.
void ErrorMsg();
////////////////////////////////////////
// The main() function.
////////////////////////////////////////
int main()
{
// Call the function.
ErrorMsg();
return 0;
}
////////////////////////////////////////
// Display an error message.
////////////////////////////////////////
void ErrorMsg()
{
std::cout << "\aError!";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -