fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <string>
  4.  
  5. std::string arr[] = {
  6. "I'd love to know",
  7. "I'm not interested"
  8. "I'm going to go eat out",
  9. "I'm going to go put food in the oven",
  10. "I'm working",
  11. "I'm gaming"
  12. };
  13.  
  14. int main() {
  15. if (rand() % 2)
  16. std::cout << "Fuck you, and ";
  17. std::cout << arr[rand() % 6];
  18. }
Success #stdin #stdout 0s 2960KB
stdin
Standard input is empty
stdout
Fuck you, and I'm gaming