26、顺序执行以下赋值命令后,下列表达式中,合法的表达式是( D )
X=”12”
Y=23
Z=LEFT(“FOXPRO”,3)
A X+Y
B Y+Z
C X-Z=Y
D X-X+Z-Z
34、在数据库设计器中,如果两个表的索引标识之间有一条黑线相接,表示这两个表存在着( A )。
A 永久关系
B 临时关系
C 索引关系
D 触发关系
38、已知有学生表studentdbf,并已有按学号索引文件xhidx,在执行如下命令:
use student index xh
go top
skip-1
skip
此时记录指针向( C )。
A 记录号为1的记录
B 记录号为2的记录
C 前面第一条记录
D 前面第二条记录
39、已知有学生表studentdbf,并已按学号字段索引,其索引文件为xhidx,现执行命令:use student index xh 后,记录指针指向(C )
A 表的开始位置(即bof)
B 记录号为1的记录
C 学号最靠前的记录
D 不确定
46、在sql的select语句中,参数top n 用于限制查询记录的数目,与之匹配合使用的子句为( B )
A where 子句
B order by 子句
C group by 子句
D join 子句
假设A列的字段名为“基本工资”,B列为“奖金”,C列为“应发合计”,在VFP的命令窗口中,可用下式计算:
repl all 应发合计 with 基本工资+奖金 回答者: assizx | 四级 | 2011-6-21 13:47 | 检举
repl all C列 with
1
input "请输入学分" to xuefen
select 课程名称,课程号 from course where 学分=xuefen
2
input "请输入学号" to xuehao
select avg(成绩) as b from mark
case b>=90
"优"
case b>=80
"良"
case b>=70
"中"
case b>=60
"及格"
otherwise
"不及格
end case
1、要看表结构。正常用select语句做。
2、
ALTER TABLE cj ADD 等级 c(6)
update cj set 等级 = '优' where 成绩 >= 90
3、自己先建表。再做表单界面。
程序1
clear
"1992-2020年中间的闰年有:"
for year=1992 to 2020
if year%4==0 and year%100!=0 or year%400==0
year
endif
endfor
程序2
clear
s=0
for i=100 to 999
if i%11=0
if i%10=8 or i/10%10=8 or i/100=8
i
s=s+1
endif
endif
endfor
"三位数中总共有",s,"个能被11整除同时又含有8的数字"
程序3
clear
a="Long long ago,there was a war between the birds and the beats No one knows what they fought aboutThe bat did not know whose side he should take He thought and thought, "
c="then decided he must try to be on the side of the winnersSo he watched from far away After a while, it seemed that the birds were going to winHe flew over to join them"
b=""
i=1
for j=1 to len(a)
if substr(a,j,1)!=" "
b=b+substr(a,j,1)
endif
endfor
for j=1 to len(c)
if substr(c,j,1)!=" "
b=b+substr(c,j,1)
endif
endfor
b
程序4
input "请输入数字:" to n
P=2N-1
FOR I=1 TO P
IF I<=N
SPACE(N-I+1)
FOR J=1 TO 2I-1
""
ENDFOR
ELSE
SPACE(I-N+1)
FOR K=1 TO 2(2N-I)-1
""
ENDFOR
ENDIF
ENDFOR
以上就是关于关于VFP的两道程序设计题,不会了,求解~全部的内容,包括:关于VFP的两道程序设计题,不会了,求解~、visual foxpro 6.0基础教程(试用版) 课后习题 题目及答案、请教VFP高手,有几道题希望帮忙给下答案,实在是弄不懂啊,没多少分,但希望帮帮忙等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)