Saved Bookmarks
| 1. |
Can More Than One Variable Be Stored In A Data Statement? |
|
Answer» Yes. For example you can SET initial values for A, B, and C with either of the FOLLOWING statements. DATA A/1.0/,B/2.0/,C/3.0/ DATA A,B,C/1.0,2.0,3.0/Yes. For example you can set initial values for A, B, and C with either of the following statements. |
|