在以下程序中,完成該語句,以便當距離達到250英里或使用了10加侖燃油時,程序停止生成觀測值()。data work.go250;set perm.cars;do gallons=1to 10...;Distance=gallons*mpg;output;end;run;
A.while(Distance< 250)B.when(Distance>250)C.over(Distance le 250)D.until(Distance=250)
A.data linesB.proceduresC.the FORMAT statementD.the INPUT statement
A.B.C.D.