使用\a播放警报铃声。

#include <iostream>
using namespace std;

int main(){
	cout << "\a";
	cout << "播放已完成!" << endl; 
	return 0;
}