您好我一直在尝试创建一个程序,要求用户输入,无论用户输入什么类型,它都会将其作为命令执行。有点像CMD
#include <iostream>
#include <string>
using namespace std;
string A;
int main(){
for (int i = 0; i > -1; ++i){
cout << "Command: ";
cin >> A;
// Here Would Be The Code
cout << "Command Executed!";
}
}
以下是我想象的可能输出(如果有效)
Command: cout << "Test";
Test
Command Executed!