1
2
3
4
5
6
7
8
9
10
11
12
public  class  A01 {
 
     public  static  void  main(String[] args) {
         // TODO Auto-generated method stub
         String name [] =  new  String []{ "Nike背包" , "Adidas运动衫" , "李宁运动鞋" , "Kappa外套" , "361°腰包" };
         System.out.println( "本次活动特价商品有:" );
         for  ( int  i =  0 ; i < name.length; i++) {
             System.out.println(name[i]);
         }
     }
 
}