| Original Message (ID '76022') By Bill Simpson: |
| If I evaluate this expression
In[1]:= v=Table[Input[],{3}]
and when the input box pops up I enter 1
and when the input box pops up I enter 2
and when the input box pops up I enter 5
then it displays
Out[1]= {1,2,5}
It is also possible to evaluate this expression
In[2]:= v=Input[]
and when the input box pops up I enter {1,2,5}
then it displays
Out[2]= {1,2,5} |
|