fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. char lotID;
  7. cin>> lotID;
  8. if (lotID == 'a' || lotID == 'A')
  9. {
  10. cout<< "\n\t You have picked"<< lotID <<" your cost today is $25.00";
  11. }
  12. else if(lotID =='b' || lotID == 'B')
  13. {
  14. cout<< "\n\t You have picked"<< lotID <<" your cost today is $22.50";
  15. }
  16. return 0;
  17. }
Success #stdin #stdout 0s 3344KB
stdin
a
stdout
	 You have pickeda your cost today is $25.00