我是 C++ 新手,我已经在 Java 中工作了一段时间,现在我想学习更多的语言。我正在制作一个 CMD RPG 游戏。我希望用户输入一个字符来更改命令提示符中文本和背景的颜色。
char bg,txt;
cout << "Enter your option for BACKGROUND color: " << endl;
cin >> bg;
system("cls");
cout << "Enter your option for TEXT color: " << endl;
cin >> txt;
system("cls");
//here is the part I have trouble on
system("color ",bg,txt);
//