ライブラリ DOS.H に関数 sound、nosound、delay が含まれているバージョンの言語 C/C++ (ダウンロード??) を入手するにはどうすればよいですか? たとえば、code::blocks のバージョン c/c++ には存在しません。関数 sound/nosound/delay を使用/検索するにはどうすればよいですか? ご協力ありがとうございました !
質問する
8331 次
3 に答える
4
TurboC/TurboC++ のコピーをダウンロード (ため息) します。
于 2012-10-21T20:03:36.667 に答える
0
上記の win 7 を使用している場合は、DOS ボックスを使用して borland Turbo c++ をダウンロードし、ビープ音を 500 ミリ秒間聞いて、次のコードを使用します。
#include<iostream.h>
#include<conio.h>
#include<dos.h>
void main()
{clrscr(); //for clearing the screen...
int x;
x=1000; // here 1000 is the frequency of the sound
sound(x); //u can directly write integer in the place of x
delay(500);
nosound(); //it is necessary to close the sound or u will keep on hearing
getch(); // to wait at the end of program
}
于 2016-03-14T17:36:35.600 に答える