一个简单的for循环

Posted 萌的一波

tags:

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

直接上代码,复习基础,谢谢!

public class For {
public static void main(String[] args) {

for (int i = 0; i <10; i++) {
System.out.println("a="+i);
}

//加强版for循环
int [] numbers = {10, 20, 30, 40, 50};

for(int x : numbers ){
System.out.print( x );
System.out.print(",");
}
System.out.print("\n");
String [] names ={"James", "Larry", "Tom", "Lacy"};
for( String name : names ) {
System.out.print( name );
System.out.print(",");
}
}
}

以上是关于一个简单的for循环的主要内容,如果未能解决你的问题,请参考以下文章

一个简单for循环的时间复杂度

一个简单for循环的时间复杂度

简单的for循环在python中不起作用

Python之for循环简单案例

非常简单的素数测试 - 我想我不理解for循环

简单的 For 循环在 cs6 上不起作用?