Here is my concern:
I am using two variables in my program. The first variable is
Code: Select all
inputNumber
Code: Select all
remainder
Code: Select all
inputNumber MOD 3
In my calculation block I entered:
Code: Select all
remainder = inputNumber MOD 3
In the Input block I established the above variables and used
Code: Select all
inputNumber
My partner did everything the same way and his program worked flawlessly. But on my machine I could not get past the calculation block due to this variable problem.
Code: Select all