菜单

列模式数据输入

data test2_9;
input city$ 1-10 zip 12-17; /*列模式数据输入*/
cards;
Birmingham 35201
Montgomery 36101
Huntsville 35801
Tuscaloosa 35401
Mobile 36601
;
proc print;
run;