alien_fx_fiend

cowsay cpp port

Jul 19th, 2020 (edited)
1,214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string str;
  8. getline(cin, str);
  9. cout << "< " << str << " >" << endl;
  10.   cout << "  \\ ^__^" << endl;
  11.   cout << "    (oo)\\_______" << endl;
  12.   cout << "    (__)\\       )\\/\\" << endl;
  13.   cout << "        ||----w |" << endl;
  14.   cout << "        ||     ||" << endl;
  15.   return (0);
  16. }
Add Comment
Please, Sign In to add comment