#include <mmsystem.h>
#include <iostream>
using namespace std;
#pragma comment(lib, "Winmm.lib")
int main() {
string play = "play ";
string song = "13463.mp3";
play += song;
cout << play << endl;
MCIERROR err = mciSendStringA(play.c_str(), NULL, 0, NULL);
if (err != 0) {
cout << "Failed to play the audio file. Error code: " << err << endl;
}
char c;
cin >> c;
return 0;
}
输了之后就会变成这样求各位大佬教教我吧,求求了