vba练习-while循环

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vba练习-while循环相关的知识,希望对你有一定的参考价值。

技术分享图片
统计所有学生的平均成绩,当A列继续输入时,仍能统计。
Sub 统计()
Dim i, total, count
total = 0
count = 0
i = 2
Do While Cells(i, 1) <> ""
total = total + Cells(i, 2)
count = count + 1
i = i + 1
Loop
If count > 0 Then
Cells(3, 3).Value = total / count
End If
End Sub

以上是关于vba练习-while循环的主要内容,如果未能解决你的问题,请参考以下文章

js循环(while循环,do while循环,for循环)相关知识点及练习

如何在 VBA 中结束 do while 循环

Python基础-----while循环练习

python-while循环的练习题

python学习-7 条件语句 while循环 + 练习题

python3练习:while循环