forvalues 语句——数字的循环 while 语句——条件循环 foreach 语句——变量、暂元、文件等的循环 这道题应该用foreach, 在stata-do file中输入help foreach可以查询相关语法格式 a. 任意格式:foreach v in ... type d1.txt type d2.txt type d3.txt foreach file in d1 d2 d3{ (file是暂元的名字) local varname id year invest market stock insheet `varname' using `file'.txt,clear save `file'.dta, replace }