作者steven225 (留戀)
看板Statistics
標題[問題] SAS的巨集問題
時間Fri Jul 31 21:51:27 2020
想請問以下巨集的SAS CODE
%macro test (x,y);
%if x>y %then %put %eval(&X-&Y);
%else %put %eval(&Y-&X);
%mend test;
%test(8,5);
出來的結果是-3?
X為8,Y為5,X是大於Y,所以出來的結果應該是X-Y=3才對,
為什麼會是-3?
搞不懂,救教於大家,感謝!
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 180.176.144.245 (臺灣)
※ 文章網址: https://webptt.com/m.aspx?n=bbs/Statistics/M.1596203489.A.97B.html
1F:推 fairwind: %if &x>&y 07/31 21:55
2F:→ steven225: 原來如此,晃然大悟,感恩! 07/31 22:11