鸣铃

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zero_1778393206/article/details/80737732
#include<iostream>
#include <Windows.h>
using namespace std;
int main()
{
    while (true)
    {
        cout << '\a';
        Sleep(1000);
    }
    system("pause");
    return 0;
}

猜你喜欢

转载自blog.csdn.net/zero_1778393206/article/details/80737732