Hello, I've written a program in Mathematica which asks the user (so Input) the values of n,a,b,c; these are stored. The program runs fine in Mathematica but it doesn't work when I upload it to the Cloud.
Then I define the following two lines:
l[t_]:=(-a*t - 100*c + 7000)/b;
g=Table[Table[{q,y},{y,Ceiling[(7000-a*n-b*q)/c],100}],{q,Ceiling[l[n]],100}];
Note that a,b,c and n are defined so the indices are numeric.
However, the cloud's output is:
Table:Iterator{q,Ceiling[(1/30)(7000-119Null)],100} does not have appropriate bounds.
How can I correct this? I have no problem in Mathematica, just when executing online from the Cloud.