由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 求教sas base online tutor 的quiz中的一题
相关主题
SAS advance Quiz 一问请教- 怎么对R code加密?
菜鸟请教关于赋给macro variables变量值菜鸟接着请教sas base123题的112和50题里面的41题区别
【欢迎进来讨论】for loop in R问SAS adv 真题里的一题
Need Industrial Engineering Tutor请教Base 70 中的一题 关于@
问R和C的循环语句SAS Base Passed on Jan26
sas 代码问题请给出基本好的概率、统计书
请问SAS ADV 130中74 和80题SUCK ON QUIZE RESULTS OF SAS BASE
One simple question about %if请问一个统计问题
相关话题的讨论汇总
话题: do话题: loop话题: while话题: times话题: execute
进入Statistics版参与讨论
1 (共1页)
d*****6
发帖数: 100
1
How many times does this DO loop execute?
data work.trial;
do i=1 to 10 while(x<=4);
x+1;
end;
run;
答案是5, 为什么?我们并不知道x开始等于多少呀
多谢!!
d*****6
发帖数: 100
2
我是SAS新手,问题比较低级。但是我以为DO loop execute one time, x=1,
two times x=2, three times x=3, four times x=4, then this do loop should
stop.
请大虾解惑!
w***z
发帖数: 28
3
when using WHILE, the loop will execute as long as the WHILE expression is
true.
x开始等于0
as u said after four times x=4, x<=4 is still true, it will do loop one more
time
d*****6
发帖数: 100
4
I see. Thank you very much!
1 (共1页)
进入Statistics版参与讨论
相关主题
请问一个统计问题问R和C的循环语句
Sas advance chapter quiz 一问sas 代码问题
请教sas base(70)的27题请问SAS ADV 130中74 和80题
[合集] SAS base exam questionsOne simple question about %if
SAS advance Quiz 一问请教- 怎么对R code加密?
菜鸟请教关于赋给macro variables变量值菜鸟接着请教sas base123题的112和50题里面的41题区别
【欢迎进来讨论】for loop in R问SAS adv 真题里的一题
Need Industrial Engineering Tutor请教Base 70 中的一题 关于@
相关话题的讨论汇总
话题: do话题: loop话题: while话题: times话题: execute