设乙做x朵花,
56x-1=24,
56x=24+1,
56x=25,
x=25÷56,
x=30,
答:乙做30朵.
中国的少数民族中人数最少的是()。
A.赫哲族
B.高山族
C.珞巴族
D.独龙族
下列程序的功能是:单击窗体时将求出随机生成的10个两位数中的最大数及其下标,请填空。 Option Base 1 Private Sub Form_Click() Dim a(10) As Integer,i As Integer Dim max As Integer,max_i As Integer Randomize For i=1 To 10a(i)= 【12】 Next i max=a(1):max_i=1 For i=1 To 10If 【13】 Then max=a(i) max_i=iEnd If Next i Print max,max_i End Sub