烟花音乐代码
#include<graphics.h>#include<conio.h>
//包含库文件
#pragma comment(lib,"winmm.lib")//播放音乐
int main()
{ initgraph(1200,800);//初始化一个图形界面
closegraph();
return 0;
}
//欢迎界面
void Welcome()
{
//播放背景音乐
mciSendString("open ./fire/bk.mp3 alias bk",0,0,0);//获取音乐的文件的路径
mciSendString("play bk repeat",0,0,0);
//文字的输出
settextstyle(50,0,"楷体");//设置字体风格
setcolor(GREEN); //设置字体颜色
outtextxy(480,100,"衣立君");//在指定坐标输出文字
outtextxy(440,150,"欢迎");
settextstyle(25,0,"楷体");
getch();
cleardevice();
outtextxy(400,250,"你 好");
outtextxy(400,300,"不好");
outtextxy(400,350,"不喜欢");
outtextxy(400,400,"喜欢");
outtextxy(400,450,"还可以");
outtextxy(400,500,"一般般");
outtextxy(400,550,"还有谁");
getch();
}
viod里面的代码在主函数可以运行 但是在viod里面运行可以成功,但窗口只是一闪就过了