我想写一个程序来解决一个简单的猜谜游戏。我正在学习命令行管道和重定向,所以我想知道这是否可能。
基本上我希望一个的输出成为另一个的输入,然后那个的输出成为另一个的输入。
这只是为了好玩,所以我可以学习,我知道我可以更改猜谜游戏的源代码并包含求解算法,但只是为了好玩让我们假设我没有源代码。
这甚至可能吗?这是我的代码:
//GuessingGame.cc
#include <cstdlib>
#include <iostream>
using namespace std;
int main() {
srand(time(NULL));
int number = rand()%100;
int guess = -1;
int trycount = 0;
while(guess != number && trycount < 8) {
cout << "Please enter a guess: ";
cin >> guess;
if(guess < number)
cout << "Too low" << endl;
else if(guess > number)
cout << "Too high" << endl;
trycount++;
}
if(guess == number)
cout << "You guessed the number!";
else
cout << "Sorry, the number was: " << number;
return 0;
}
求解器.cc
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char* argv[]) {
string prompt;
int high = 100;
int low = 0;
int guess = 50;
getline(cin,prompt);
if(prompt == "Please enter a guess: ")
cout << guess;
while(true) {
getline(cin,prompt);
if(prompt == "Too low")
low = guess;
else if(prompt == "Too high")
high = guess;
else if(prompt == "You guessed the number!")
return 0;
guess = (low+high)/2;
cout << guess;
}
}
我希望你明白我在做什么,我不太关心这个程序,它只是一个例子。主要问题是您是否可以使用重定向和管道等与两个不同的程序进行交互。谢谢