帮朋友求解几个题目
= =朋友叫帮问问这几个题目,自己学C的,不知道,= =只好在这里问问了1、执行下列程序,当输入8时,写出显示的结果。
Clear
Wait "请输入一个字符:" to A
Do Case
Case Islower(A)
?"Lower"
Case Isupper(A)
?"Upper"
Case A>='0' And A<="9"
?"Digit"
OtherWise
?"Other"
EndCase
2、执行下列程序,写出显示的结果。
Dimension A(20)
Store 1 To A(1), A(2)
For I=3 To 20
A(I)=A(I-1)+A(I-2)
Endfor
? A(10)
程序阅读,写出程序的功能。
select bj.班级名称,student.学号,student.姓名,avg(cj.成绩) as 平均成绩;
from 学生管理!bj INNER JOIN 学生管理!student ;
INNER JOIN 学生管理!cj ;
on student.学号=cj.学号;
on bj.班级编号=student.班级编号;
group by student.学号;
order by 4 Desc
指出下列程序段的含义
1、wait ‘注意: 现在暂停’+chr(13)+’程序的执行’ windows at 10,10 timeout 8
2、create table student (学号 c(6),姓名 c(6),性别 L(1),出生日期 d(8),班级编号 c(4),总学分 n(3,1))
3、 ThisForm.Text1.Alignment=2
ThisForm.Text1.FontBold=.t.
ThisForm.Text1.FontName=’宋体’
4、i=0
do while i<=This.Parent.List1.ListCount
if This.Parent.List1.Selected(i)
This.Parent.List2.Additem(This.Parent.List1.List(i))
This.Parent.List1.RemoveItem(i)
else
i=i+1
endif
enddo
把列表框list1中被选中的选项添加到列表框list2中
自己也看不懂``= =有知道的朋友帮忙写详细点``也了解了解``