编写一个java程序,要求用到以下形式的循环语句至少2种: for循环语句、do-while循环语句。
时间: 2024-10-03 20:02:00 浏览: 42
Java实验-循环语句,for,while,do-while
5星 · 资源好评率100%
在Java中编写一个程序,可以使用for循环和do-while循环分别执行一些操作,例如打印数字序列。这里是一个简单的例子:
```java
public class LoopExample {
public static void main(String[] args) {
// For循环示例
for (int i = 0; i < 5; i++) {
System.out.println("当前索引: " + i);
}
System.out.println("\n---For loop ends here---\n");
// Do-while循环示例
int j = 0;
do {
System.out.println("当前索引(Do-While): " + j);
j++;
} while (j < 5); // 只有当条件满足时才会结束循环
System.out.println("\n---Do-While loop ends here---\n");
}
}
```
这个程序首先使用for循环打印从0到4的数字,然后使用do-while循环执行同样的任务,直到计数器`j`达到5。
阅读全文