VB.NET在线运行

版本:

所属目录
点击了解高性能代码运行API
运行结果
教程手册
代码仓库
极速运行
终端运行
图形+终端

                        
以下是用户最新保存的代码
第一个vb代码 发布于:2023-12-24 17:06 测试代码使用 发布于:2023-10-02 09:16 V1.0的快乐测试 发布于:2023-07-13 21:14 访问openai 发布于:2023-06-18 20:48 驱蚊器翁去 发布于:2023-05-19 20:30 我的初体验 发布于:2023-05-19 14:51 跟随输入法切换光标展示状态 发布于:2023-04-09 18:02 Returns dimensions of passed POV 发布于:2023-01-08 16:29 菜鸟只不过试试 发布于:2022-11-08 09:21 平面钢架源码 发布于:2022-11-03 11:28 测试血糖速度 发布于:2021-03-30 14:48 Pyramid drawing 发布于:2020-11-24 19:05 在 VB.Net 中的编译器指令 The #Const 指令 The #ExternalSource 指令 The #If...Then...#Else 指令 The #Region 指令 发布于:2020-11-23 16:48 枚举,接收来自用户的值 发布于:2020-11-23 16:16 金字塔打印 发布于:2020-11-23 15:12 [更多]
显示目录

循环



学习嵌入式的绝佳套件,esp8266开源小电视成品,比自己去买开发板+屏幕还要便宜,省去了焊接不当搞坏的风险。 蜂鸣版+触控升级仅36元,更强的硬件、价格全网最低。

点击购买 固件广场

VB.Net - 循环

可能有一种情况,当你需要执行一段代码几次。 一般来说,语句是按顺序执行的:函数中的第一个语句首先执行,然后是第二个语句,依此类推。

编程语言提供允许更复杂的执行路径的各种控制结构。

循环语句允许我们多次执行一个语句或一组语句,以下是大多数编程语言中循环语句的一般形式:

环路结构

VB.Net提供以下类型的循环来处理循环需求。 单击以下链接以检查其详细信息。

循环类型 描述
Do Loop It repeats the enclosed block of statements while a Boolean condition is True or until the condition becomes True.
It could be terminated at any time with the Exit Do statement.
它重复包含的语句块内布尔条件为True或直到条件变为True。 它可以随时使用Exit Do语句终止。
For...Next It repeats a group of statements a specified number of times and a loop index counts the number of loop iterations as the loop executes.
它重复指定次数的一组语句,循环索引计算循环执行时的循环迭代数。
For Each...Next It repeats a group of statements for each element in a collection.
This loop is used for accessing and manipulating all elements in an array or a VB.Net collection.
它为集合中的每个元素重复一组语句。 这个循环用于访问和操作数组或VB.Net集合中的所有元素。
While... End While It executes a series of statements as long as a given condition is True.
只要给定条件为True,它就执行一系列语句。
With... End With It is not exactly a looping construct.
It executes a series of statements that repeatedly refer to a single object or structure.
它不是一个循环结构。 它执行一系列重复引用单个对象或结构的语句。
Nested loops You can use one or more loops inside any another While, For or Do loop.
您可以在任何其他While,For或Do循环中使用一个或多个循环。

循环控制语句:

循环控制语句从其正常序列改变执行。 当执行离开作用域时,在该作用域中创建的所有自动对象都将被销毁。

VB.Net提供以下控制语句。 单击以下链接以检查其详细信息。

控制语句 描述
Exit statement Terminates the loop or select case statement and transfers execution to the statement immediately following the loop or select case.
终止循环或选择大小写语句,并将执行转移到循环或选择大小之后的语句。
Continue statement Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating.
导致循环跳过其本身的其余部分,并在重复之前立即重新测试其状态。
GoTo statement Transfers control to the labeled statement. Though it is not advised to use GoTo statement in your program.
将控制转移到带标签的语句。 虽然不建议在程序中使用GoTo语句。
由JSRUN为你提供的VB.NET在线运行、在线编译工具
        JSRUN提供的VB.NET 在线运行,VB.NET 在线运行工具,基于linux操作系统环境提供线上编译和线上运行,具有运行快速,运行结果与常用开发、生产环境保持一致的特点。
yout