Introduction Information for one observation can be spread out over several records.
You can write multiple INPUT statements to read each record that comprises
a single |
input Lname $ 1-8 Fname $ 10-15; input Department $ 1-12 JobCode $ 15-19; input Salary comma10.; |
|
. . . or, you can write one INPUT statement that contains a line pointer control to specify the record(s) from which values are to be read. |
input #1 Lname $ 1-8 Fname $ 10-15 #2 Department $ 1-12 JobCode $ 15-19 #3 Salary comma10.; |
|
|
30 minutes |
In this lesson, you learn to
|
complete the following lessons:
|