主题:一个关于DO WHILE的程序改错题,请高人帮忙指点一下。
[size=3][size=6][size=5][size=3]程序文件five.prg的功能是:根据“教师”表计算每个系的老师人数并将相应数据填入“学院”表,程序中有三处错误,请修改并执行程序。只能修改标有错误的语句行,不能修改其他语句。
five.prg文件内容如下:[/size][/size][/size][/size]
close data
use 学院
go top
do .not. eof() &&错误
xihao=系号
select count(*) from 教师 where 教师.系号=xihao into A &&错误
replace 教师人数 with A[1]
next &&错误
enddo
five.prg文件内容如下:[/size][/size][/size][/size]
close data
use 学院
go top
do .not. eof() &&错误
xihao=系号
select count(*) from 教师 where 教师.系号=xihao into A &&错误
replace 教师人数 with A[1]
next &&错误
enddo