Computer Science Canada Help with bank program |
Author: | Azzy [ Wed Oct 19, 2005 9:29 pm ] | ||
Post subject: | Help with bank program | ||
I saw avsrule's ATM program and decided to make my own bank program with intrest and deposits and stuff but I have a problem. It's probably some easy to fix stupid mistake I've made but oh well. The problem is with the for-if statement at the end. Even though the pin number is correct, it still shows the pin is incorrect line. Please someone help me.
|
Author: | bass_maniac [ Wed Oct 19, 2005 10:02 pm ] | ||||
Post subject: | |||||
I don't know the contents of your bank.txt file, but in the file do you have all the names first, then the pins and then the balances? Because this is the order you are getting them from the file. So if the file looks like
Also, are you sure you have quotes around the names in your file? If you don't, "John" and "Smith" will be considered two different names and that will throw off the rest of the values. You can try those ideas first, but if you post your bank.txt file that'd make it easier to test your prog. |
Author: | beard0 [ Wed Oct 19, 2005 10:13 pm ] |
Post subject: | |
The way you do it, if the first time through the loop, the first user isn't the one eneterd, then you tell them they are wrong and exit. Even if the user entered the pin for user #1, they are then compared to user number 2, who obviously isn't the same, it tells you you're wrong, and exits. You need to check all of them for accuracy inside the loop, set a boolean if you find a match, then check your boolean after the loop for failure. |
Author: | MysticVegeta [ Thu Oct 20, 2005 1:45 pm ] |
Post subject: | |
And also your code is not KISSED! - Varible declaration - getting 3 arrays at the same time - delay(500) put "." delay(500) put "." use a for loop. - set temp to 0 then you can "temp += array(x)" - etc |