N***0 发帖数: 303 | 1 The contents of the raw data file EMPLOYEE are listed below:
----|----10---|----20---|----30
Ruth 39 11
Jose 32 22
Sue 30 33
John 40 44
The following SAS program is submitted:
data test;
in file' employee';
input employee_ name $ 1-4;
if employee_ name = 'Sue' then input age 7-8;
else input idnum 10-11;
run;
Which one of the following values does the variable AGE contain when the
name of
the employee is "Sue"?
A. 30
B. 33
C. 40
D. . (missing numeric value)
答案 C
指针如何跳转的,这里没有问题,我的问题是关于column input,定义的数字应该即是
variable的长度又等于实际读入的column的
input employee_ name $ 1-4;
如果读到Sue这行,读入的employee_ name 应该是'sue ',就是在e后面又读入了一个空
格吧。
当比较if employee_ name = 'Sue' 的时候应该是不等于,然后应该input column 10-
11,所以我认为是44啊?但肯定是错误的,不知道该如何解释呢?
请大家指点我的概念理解错在哪里了。谢谢 |
|