cs161AWinter2024/whileCin1.cpp

13 lines
212 B
C++
Raw Normal View History

2024-02-05 18:42:57 +00:00
#include <iostream>
using namespace std;
int main(){
string input = "";
while(input != "chicken"){
cout << "Say the magic word: ";
cin >> input;
}
cout << "You said it!" << endl;
return 0;
}