|
Post by Tbstar on Mar 25, 2022 20:54:58 GMT
Hey guys, I made a program whereby test scores and examination scores are used to calculate the percentage and then grades it The problem is after pressing run, If a mistake is made by the teacher it cants be corrected Is there anyway whereby while running data imputed can be corrected
|
|
|
Post by plus on Mar 25, 2022 22:02:11 GMT
After you press run, imputations cannot be corrected. But you can easily display the data and have the user approve or improve it's correctness. Would that be an acceptable solution? BTW Welcome to the Forum!
|
|
|
Post by Rod on Mar 26, 2022 7:52:30 GMT
You could check each input as it is taken to be sure it is in range or a sensible value. Stop and challenge at that point. You might also run the code and look for unexpected results and report those. But the ultimate solution is to display all the data and allow the user to amend the input and repeat the calculations until they are happy with the result. To do that you will need to store the input in an array or in a file for reuse.
|
|