题目
Exce中 A1到A9与B1到B9单元格对应,C1到C9与D1到D9单元格对应,B列与D列循环相加结果为11时,求A C的数值是多少?有多少组?用VBA代码如何编写?
提问时间:2020-11-25
答案
Sub test()
Dim arr,x&,y&,i&,Str1$
arr = Range("A1:D9").Value
For x = 1 To UBound(arr)
For y = 1 To UBound(arr)
If arr(x,2) + arr(y,4) = 11 Then
i = i + 1
Str1 = Str1 & "," & arr(x,1) & "和" & arr(y,3)
End If
Next y
Next x
MsgBox "共" & i & "组,对应A和C的值为:" & Mid(Str1,2,Len(Str1))
End Sub
Dim arr,x&,y&,i&,Str1$
arr = Range("A1:D9").Value
For x = 1 To UBound(arr)
For y = 1 To UBound(arr)
If arr(x,2) + arr(y,4) = 11 Then
i = i + 1
Str1 = Str1 & "," & arr(x,1) & "和" & arr(y,3)
End If
Next y
Next x
MsgBox "共" & i & "组,对应A和C的值为:" & Mid(Str1,2,Len(Str1))
End Sub
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
最新试题
- 1一桶盐水,重200千克,含盐率是10%,要使含盐率达到16%,要蒸发掉多少千克水?
- 226个字母排序和组合
- 3一次数学测试中,第一组6名同学的平均分是85分,前4名同学的平均分是89分,后4名同学的平均分是82分,第3名
- 4She was cooking when she cut her finger
- 5林地如何因地制宜发展经济?
- 6Friday is b__ Thurdesday and Saturday.
- 7it.takes.me.lots.of.time.to.study.but.i.don"t.still.make.progress中文是什么意思呀?
- 8可以作为气体状态参数的量是?A内能B功C热量D表压力
- 9探究酒精对水蚤心率的影响
- 10consult the dictionary与look up the dictionary有什么区别
热门考点