为了账号安全,请及时绑定邮箱和手机立即绑定

编写一个程序,发出一声警报

编写一个程序,发出一声警报

C
小王记笔记 2017-02-27 14:11:51
然后打印下面的文本: Startled by the sudden sound,Sally shouted, 'By the Great Pumpkin, what was that !'
查看完整描述

3 回答

?
习惯受伤

TA贡献885条经验 获得超1144个赞

C++:

#include <iostream>
#include <windows.h> 
using namespace std;
int main()
{
	Beep(800, 500);
	cout << "Startled by the sudden sound,Sally shouted, 'By the Great Pumpkin, what was that !";
	return 0;
}


查看完整回答
2 反对 回复 2017-02-27
?
夂亦

TA贡献2条经验 获得超0个赞

#include <stdio.h> int main(){ printf("\a"); printf("Startled by the sudden sound,Sally shouted, 'By the Great Pumpkin, what was that !'"); }
查看完整回答
反对 回复 2017-02-27
  • 3 回答
  • 0 关注
  • 2688 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信