- 相關(guān)推薦
2016年9月計(jì)算機(jī)二級VisualFoxPro模擬試題及答案
為幫助同學(xué)們在9月計(jì)算機(jī)等級考試中有好成績,yjbys小編在此為大家分享最新計(jì)算機(jī)VF考試模擬試題及參考答案如下,快來看看吧!
一、寫出下列程序的運(yùn)行結(jié)果:
1.set talk off
y=1
if y<>0
x=3
else
x=5
endif
if x>4
if y<0
x=2
else
if x>0.and.y>0
x=12
else
x=30
endif
endif
else
x=5
endif
x
1、set talk off
a=100*rand( )
b=100*rand( )
c=100*rand( )
max=a
min=a
if max
max=b
endif
if min>b
min=b
endif
if max
max=c
endif
if min>c
min=c
endif
a,b
四、鍵盤輸入a,b,c的值,判斷它們能否構(gòu)成三角形的三條邊,若能構(gòu)成一個(gè)三角形,則計(jì)算三角形的面積。請用表單和建立命令文件兩種方法。
五、建立一個(gè)表單,如圖,開始自動(dòng)顯示系統(tǒng)時(shí)間,當(dāng)在文本框中輸入一個(gè)數(shù)值后,按“之前”或“之后”按鈕,使可顯示指定天數(shù)之前或之后的日期和星期。
【參考答案】
一、寫出下列程序的運(yùn)行結(jié)果:
1.set talk off
y=1
if y<>0
x=3
else
x=5
endif
if x>4
if y<0
x=2
else
if x>0.and.y>0
x=12
else
x=30
endif
endif
else
x=5
endif
x
2、set talk off
a=100*rand( )
b=100*rand( )
c=100*rand( )
max=a
min=a
if max
max=b
endif
if min>b
min=b
endif
if max
max=c
endif
if min>c
min=c
endif
a,b
第1題:5
第二題:產(chǎn)生100以內(nèi)的兩個(gè)隨機(jī)數(shù)
二、輸入3個(gè)不同的數(shù),將它們從大到小排列。如圖,請寫出“排序”按鈕的單擊事件代碼。
三、鍵盤輸入一個(gè)數(shù),判斷它能否同時(shí)被3、5、7整除的命令文件。
*編程思想:一個(gè)數(shù)被3、5、7除的余數(shù)若都為零,即能同時(shí)被三個(gè)數(shù)整除
input "請輸入一個(gè)數(shù):" to A
if A%5=0 and A%3=0 and A%7=0
A,"能同時(shí)被3,5,7整除"
ELSE
A,"不能同時(shí)被3,5,7整除"
ENDIF
四、鍵盤輸入a,b,c的值,判斷它們能否構(gòu)成三角形的三條邊,若能構(gòu)成一個(gè)三角形,則計(jì)算三角形的面積。請用表單和建立命令文件兩種方法。
* 命令文件形式
input "請輸入第一邊的邊長:" to a
input "請輸入第二邊的邊長:" to b
input "請輸入第三邊的邊長:" to c
if (a+b)>c and (a-b)
p=(a+b+c)/2
S=sqrt(p*(p-a)*(p-b)*(p-c))
"三角形的面積為:",S
exit
else
"不能構(gòu)成三角形,請重新輸入正確的邊長值"
cancel
endif
*command的click事件代碼:
a=val(alltrim(thisform.text1.value))
b=val(alltrim(thisform.text2.value))
c=val(alltrim(thisform.text3.value))
p=(a+b+c)/2
if a+b<=c or a-b=>c
messagebox("輸入的邊長值不能組成三角形",0+16+0,"輸入錯(cuò)誤")
else
Thisform.label1.caption=sqrt(p*(p-a)*(p-b)*(p-c))
Endif
相關(guān)文章推薦:
1.2016年計(jì)算機(jī)二級考試windows試題及答案
2.2016年計(jì)算機(jī)二級office題庫及答案
5.2016年計(jì)算機(jī)二級office試題及答案
7.2016年計(jì)算機(jī)二級MS Office試題及答案
9.2016年計(jì)算機(jī)二級MS Office習(xí)題及答案
【9月計(jì)算機(jī)二級VisualFoxPro模擬試題及答案】相關(guān)文章:
計(jì)算機(jī)二級Office模擬試題及答案07-06
2017年9月計(jì)算機(jī)二級JAVA試題及答案10-08
2024計(jì)算機(jī)二級考試模擬試題及答案06-12
計(jì)算機(jī)二級《C語言》模擬試題及答案10-24
2017年03月計(jì)算機(jī)等級VisualFoxPro考試試題10-15
2024年9月計(jì)算機(jī)二級VB考試試題及答案09-04
2016年9月計(jì)算機(jī)二級vb考試試題及答案07-17