1. if-then-else语句:
data example;
/* 定义一个变量 */
score = 75;
/* 使用if-then-else语句进行条件判断 */
if score >= 90 then
grade = 'A';
else if score >= 80 then
grade = 'B';
else if score >= 70 then
grade = 'C';
else
grade = 'D';
/* 输出结果 */
put grade=;
run;
输出: