Guest User

Untitled

a guest
Jun 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.69 KB | None | 0 0
  1. First change this:
  2. if((amount<100) && (amount<1000000)){
  3.                                      printf("Amount must not be less than 0 or more than P1,000,000!");
  4.                                      getch();
  5.                                      system("cls");
  6.                                      goto one;
  7.                                      }
  8.  
  9. into this:
  10. if((amount<1000) || (amount>1000000)){
  11.                                      printf("Amount must not be less than P1,000 or more than P1,000,000!");
  12.                                      getch();
  13.                                      system("cls");
  14.                                      goto one;
  15.                                      }
Add Comment
Please, Sign In to add comment