某數(shù)據(jù)壓縮方法描述如下:
1)原始數(shù)據(jù)中,某數(shù)不為0且相鄰無重復,壓縮數(shù)據(jù)用該數(shù)據(jù)表示:
2)原始數(shù)據(jù)中,某數(shù)為0且相鄰無重復,壓縮數(shù)據(jù)用兩個數(shù)表示,均為0;
3)原始數(shù)據(jù)中,某數(shù)據(jù)相鄰有重復,壓縮數(shù)據(jù)用3個數(shù)表示:第1個為0,第2個為重復數(shù)的個數(shù),第3個數(shù)為該數(shù)本身。
原始數(shù)據(jù):25 0 78 78 78 78 78 78
壓縮數(shù)據(jù):25 0 0 0 6 78
程序運行界面如圖所示:
根據(jù)上述算法,小明編寫如下VB程序。
(1)若文本框Text1中輸入數(shù)據(jù)為“0,25,0,78,78,0,0”(不含引號),點擊“壓縮”命令按鈕,在文本框Text2輸出數(shù)據(jù)里有個0。
(2)實現(xiàn)上述功能的VB程序如下。請在橫線處填入合適代碼。
Dim a(1 To 100)As Integer,b(1 To 100)As Integer,c(1 To 100)As Integer
Dim n As Integer,num As Integer
Private Sub Init1 ( ?。?br />Dim s1 As String,c1 As String
Dim i As Integer,t As Integer,len1 As Integer
n=0:t=0:s1=Text1.Text
len1=Len(s1)
For i=1 To len1
ch=Mid(s1,i,1)
If ch<>“,“Then
①t=t*10+val(ch)t=t*10+val(ch)
Else
n=n+1:a(n)=t:t=0
End If
Next i
n=n+1:a(n)=t
End Sub
Private Sub Command1_Click ( ?。?br />Call Init1
Dim pa As Integer,pb As Integer
Dim firstdata As Integer,count As Integer,i As Integer
pb=1
firstdata=a(1)
n=n+1
a(n)=a(n-1)+1
count=1
For i=2 To n
If a(i)=firstdata Then
count=count+1
Else
If count=1 Then
If firstdata>0 Then
b(pb)=firstdata:pb=pb+1
Else
b(pb)=0:b(pb+1)=0:pb=pb+2
End If
Else
b(pb)=0
b(pb+1)=count
②b(pb+2)=firstdatab(pb+2)=firstdata
pb=pb+3
End If
count=1
firstdata=a(i)
End If
Next i
Text2.Text=Str(b(1))
For i=③2 to pb-12 to pb-1
Text2.Text=Text2.Text+“,“+Str(b(i))
Next i
End Sub
【考點】編輯事件處理過程的代碼.
【答案】t=t*10+val(ch);b(pb+2)=firstdata;2 to pb-1
【解答】
【點評】
聲明:本試題解析著作權(quán)屬菁優(yōu)網(wǎng)所有,未經(jīng)書面同意,不得復制發(fā)布。
發(fā)布:2024/6/27 10:35:59組卷:7引用:1難度:0.4
相似題
-
1.根據(jù)AQI值判斷城市的空氣質(zhì)量。若城市的AQI值(整數(shù))不超過100則空氣質(zhì)量優(yōu)良,否則空氣質(zhì)量有污染。當輸入的AQI值為-1時則退出程序。不要更改程序結(jié)構(gòu),將題中的①②③④填入正確的語句。
city=input(“請輸入城市名:”)
AQI=int(input(“請輸入空氣質(zhì)量指數(shù)AQI的值:”))
①______ AQI!=-1:
if ②______:
print(city,“的空氣質(zhì)量優(yōu)良?!保?br />③______:
print(city,“的空氣質(zhì)量有污染?!保?br />city=input(“請輸入城市名:”)
AQI=④(input(“請輸入空氣質(zhì)量指數(shù)AQI的值:”))
(1)序號①答案為
A.if
B.while
C.for
D.def
(2)序號②答案為
A.AQI>=100
B.AQI<=100
C.AQI>100
D.AQI<100
(3)序號③答案為
A.elif
B.break
C.if
D.else
(4)序號④答案為
A.int
B.float
C.str
D.else發(fā)布:2025/1/2 11:0:1組卷:0引用:0難度:0.4 -
2.一球從100米高度自由落下,每次落地后反跳回原高度的一半,再下落。編寫一個C程序,求它在第10次落地時,其經(jīng)過了多少米?第10次反彈多高?
發(fā)布:2025/1/2 11:0:1組卷:0引用:3難度:0.3 -
3.利用海倫公式求解三角形面積。已知a,b,c為三角形的三條邊長,p為三角形的半周長,即p=(a+b+c)/2,計算此三角形面積S的海倫公式為:。不要更改程序結(jié)構(gòu),將題中的①②③填入正確的語句。
import math#導入數(shù)學模塊
def hl(a,b,c):#定義求三角形面積的函數(shù)
p=①
s=math.jye.ai(②)#sqrt用于計算算術(shù)平方根
return ③#返回面積的值
a,b,c=3,4,5#邊長依次賦值
print(“此三角形的面積S為:“,hl(a,b,c))
A. (a+b+c)/2 B.p*(p-a)*(p-b)*(p-c)
C. (a+b+c)*2 D.s
(2)序號②答案為
A.(a+b+c)/2 B.p*(p-a)*(p-b)*(p-c)
C.(a+b+c)*2 D.(3+4+5)/2
(3)序號③答案為
A.p B.s
C.p*(p-a)*(p-b)*(p-c) D.0發(fā)布:2025/1/2 11:0:1組卷:0引用:0難度:0.4
把好題分享給你的好友吧~~