无聊写的代码,发现无法更改代码
#include<stdio.h>#include<stdlib.h>
#include<windows.h>
void beyond_light_year();//光年之外
void a_very_ugly_person();//丑八怪
void netEase_cloud_music();//网易云音乐
void selected_songs();//选歌界面
void goto_selected_songs();//跳转到选歌界面
void goto_face();//直接跳转到选歌界面
void gotoxy();
void gotoxy(int x,int y)
{
COORD coord;
coord.X=x;
coord.Y=y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
} //光标定位函数
int main() //添加歌曲不用改此处代码
{
selected_songs();
return 0;
}
/////////////////////////////////////////////////////////////////////
void selected_songs()
{
int choose;
printf("**************************************\n");
printf("* 1.光年之外 *\n");
printf("* 2.丑八怪 *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* 12.更多音乐——网易云音乐 *\n");
printf("* 输入: *\n");
printf("* 其他音乐更新中... *\n");
printf("**************************************\n");
gotoxy(16,13);
scanf("%d",&choose);
if(choose==1)
{
beyond_light_year();
goto_selected_songs();
}
else if(choose==2)
{
a_very_ugly_person();
goto_selected_songs();
}
else if(choose==12)
{
netEase_cloud_music();
}
else
goto_face();
}
/////////////////////////////////////////////////////////////////////////
void a_very_ugly_person()//丑八怪 2
{ //添加歌曲不用改此处代码
system("cls");
system("color 2");
printf("如果世界漆黑 其实我很美\n");
printf("在爱情里面进退 最多被消费\n");
printf("无关痛痒的是非 又怎么不对 无所谓\n");
printf("如果像你一样 总有人赞美\n");
printf("围绕着我的卑微 也许能消退\n");
printf("其实我并不在意 有很多机会\n");
printf("像巨人一样的无畏\n");
printf("放纵我心里的鬼\n");
printf("可是我不配\n");
printf("丑八怪 能否别把灯打开\n");
printf("我要的爱 出没在漆黑一片的舞台\n");
printf("丑八怪 在这暧昧的时代\n");
printf(" \n");
printf("我的存在 像意外\n");
printf("有人用一滴泪 会红颜祸水\n");
printf("有人丢掉称谓 什么也不会\n");
printf("只要你足够虚伪 就不怕魔鬼 对不对\n");
printf("如果剧本写好 谁比谁高贵\n");
printf("我只能沉默以对 美丽本无罪\n");
printf("当欲望开始贪杯 有更多机会\n");
printf("像尘埃一样的无畏\n");
printf("化成灰谁认得谁\n");
printf("管他配不配\n");
printf("丑八怪 能否别把灯打开\n");
printf("我要的爱 出没在漆黑一片的舞台\n");
printf("丑八怪 在这暧昧的时代\n");
printf("我的存在 不意外\n");
}
void beyond_light_year()//光年之外 1
{ //添加歌曲不用改此处代码
system("color a");
system("cls");
printf("感受停在我发端的指尖\n");
printf("如何瞬间冻结时间\n");
printf("记住望着我坚定的双眼\n");
printf("也许已经没有明天\n");
printf("面对浩瀚的星海\n");
printf("我们微小得像尘埃\n");
printf("漂浮在一片无奈\n");
printf("缘分让我们相遇乱世以外\n");
printf("命运却要我们危难中相爱\n");
printf("也许未来遥远在光年之外\n");
printf("我愿守候未知里为你等待\n");
printf("我没想到为了你我能疯狂到\n");
printf("山崩海啸没有你根本不想逃\n");
printf("我的大脑为了你已经疯狂到\n");
printf("脉搏心跳没有你根本不重要\n");
printf("一双围在我胸口的臂弯\n");
printf("足够抵挡天旋地转\n");
printf("一种执迷不放手的倔强\n");
printf("足以点燃所有希望\n");
printf("宇宙磅礴而冷漠\n");
printf("我们的爱微小却闪烁\n");
printf("颠簸却如此忘我\n");
printf(" \n");
printf("缘分让我们相遇乱世以外\n");
printf("命运却要我们危难中相爱\n");
printf("也许未来遥远在光年之外\n");
printf("我愿守候未知里为你等待\n");
printf("我没想到为了你我能疯狂到\n");
printf("山崩海啸没有你根本不想逃\n");
printf("我的大脑为了你已经疯狂到\n");
printf("脉搏心跳没有你根本不重要\n");
printf("也许航道以外是醒不来的梦\n");
printf("乱世以外是纯粹的相拥\n");
printf("我没想到为了你我能疯狂到\n");
printf("山崩海啸没有你根本不想逃\n");
printf("我的大脑为了你已经疯狂到\n");
printf("脉搏心跳没有你根本不重要\n");
printf("相遇乱世以外危难中相爱\n");
printf("相遇乱世以外危难中相爱\n");
printf("我没想到 \n");
}
void goto_selected_songs() //添加歌曲不用改此处代码
{
int choose;
printf("输入0:跳转到选歌界面。输入其他:退出");
scanf("%d",&choose);
if(choose==0)
{
system("cls");
system("color 7");
selected_songs();
}
}
void goto_face()
{
system("cls");
selected_songs();
}
void netEase_cloud_music()
{
ShellExecute(NULL,"open","https://music.,NULL,NULL,SW_SHOWNORMAL);
}
编译错误提示信息:D:\VC\collect2.exe [Error] ld returned 1 exit status