我是 C++ 新手,我需要使用 LCD printf 函数运行和执行哔声程序的代码
如何使用 C++ 编写程序以在系统中显示哔哔声
你可以这样尝试:0
cout << '\a';
或试试这个: -
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
Beep(200,1000);
cin.get();
return 0;
}
还可以查看Beep 功能
std::cout << '\a';
OR
printf("\a");