-2

C++ は初めてです。LCD の printf 関数を使用してビープ プログラムを実行および実行するためのコードが必要です。

C++ を使用して、システムでビープ音を表示するプログラムを作成する方法

4

2 に答える 2

1

You can try like this:0

cout << '\a';

or try this:-

#include <iostream> 
#include <windows.h> 

using namespace std;

int main() 
{ 
    Beep(200,1000);      
    cin.get(); 
    return 0; 
}

Also check out the Beep function

于 2013-09-14T13:11:06.380 に答える
1
   std::cout << '\a';

   OR

   printf("\a");
于 2013-09-14T13:11:41.520 に答える