SIREN.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <dos.h>
  2. #include <conio.h>
  3. void main(void)
  4.  {
  5.    unsigned frequency;
  6.    do {
  7.      for (frequency = 500; frequency <= 1000; frequency += 50)
  8.       { 
  9.        sound(frequency);
  10.        delay(50);
  11.       }
  12.      for (frequency = 1000; frequency >= 500; frequency -= 50)
  13.       { 
  14.        sound(frequency);
  15.        delay(50);
  16.       }
  17.    } while (! kbhit());
  18.    nosound();
  19.  }