Write the keywords in small letters. Below is a complete program
#include<iostream>
using namespace std;
int main(){
cout<<"Enter choice:\n";
char choice;
cin>>choice;
if(choice != 'y'){
cout<<"pay the fare\n";
int pay;
cin>>pay;
cout<<pay<<endl;
}
}
Comments
Leave a comment