Jump to content

joker469

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About joker469

joker469's Achievements

0

Reputation

  1. hi can you guys help me with my c++ im kinda newbie i dontknow why my program wont let me type in a response like yes and do what i want it to do and no so if you guys could fix it up for me please i would very much apprecieate it thanks heres the code /* My program about something just havent figured it out yet */ #include <iostream> #include <stdio.h> using namespace std; char c; main() { cout << " Type in yes or no: \n"; repeat: cin >> c; if ( c = 'yes' ) { cout << " Good Job!! !! "; } if( c = 'no' ) { goto end; } else cout << " Sorry That is not a correct response : \n"; goto repeat; end: return 0; }
×
×
  • Create New...