for
Posted PoeticalJustice
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for相关的知识,希望对你有一定的参考价值。
1 public class TestFor { 2 3 /** 4 * 测试for循环; 5 * 加强版for循环 foreach 6 */ 7 public static void main(String[] args) { 8 for(int a=0;a<=100;a++){ 9 System.out.println(a); 10 } 11 } 12 13 }
以上是关于for的主要内容,如果未能解决你的问题,请参考以下文章