2011-11-08

View Code
 1 public class JavaApplication8 {
2
3 public static void main(String[] args) {
4 int[] b=new int[8];
5 for(int i=0;i<b.length;i++)
6 {
7 b[i]=i;
8 }
9 for(int c:b)
10 {
11 System.out.println(c);
12 }
13 }
14 }

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2021-10-27
  • 2022-12-23
  • 2021-10-04
  • 2021-10-20
猜你喜欢
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
  • 2022-03-06
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案