Advertisement
Alx09

Untitled

Feb 18th, 2019
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream >
  2. #include <cstdlib>
  3. #include <cstring>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. char s[10];
  9. cin >> s;
  10.  
  11. if(strcmp(s,"blue") == 0)
  12. system("color 71");
  13. cout << 'a';
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement