Guest User

Untitled

a guest
Nov 23rd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.78 KB | None | 0 0
  1.     cout << height << "\n";
  2.        
  3.     cout << "Enter a hair color. Y' is for yellow/blonde hair, 'L' is for light brown, 'D' is for dark brown, 'B' is for black, 'R' is for red, 'P' is for pink.";
  4.     cin >> hair;
  5.    
  6.     switch(hair) {
  7.         case 'Y':
  8.            cout << "I would stick my dick in it!!!";      
  9.         case 'B':
  10.             cout << "Bubb does not like that hair color!";
  11.             break;
  12.         case 'D':
  13.           cout << "Bubb does not like that hair color!";
  14.           break;    
  15.         case 'L':
  16.              cout << "Bubb does not like that hair color!";
  17.          break;
  18.         case 'R':
  19.              cout << "I would stick my dick in it!!!";
  20.         case 'P':
  21.               cout << "Bubb does not like that hair color!";
  22.               break;
Add Comment
Please, Sign In to add comment