码迷,mamicode.com
首页 > 其他好文 > 详细

1月12日作业

时间:2016-01-12 22:56:21      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

1

 

public class zifuchuanlianxi {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根

        
    // 课后题第一题    
        String str = "mingrikejijavabu";
        
        int c = 0;    
        
        for(int h = 0; h < str.length();h++)
        {
            String str2=str.substring(h, h+1);
            
            //System.out.println(str2);
                        
                if (str2.indexOf("i")==0)
                {
                    c++;
                }                        
        }
         System.out.println("字符串中“i”出现了"+c+"次");

//输出结果:字符串中“i”出现了3次 } }

2.

public class zifuchuanlianxi {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根
//课后题第二题
                     
         String str2 = " jiao ya ping  ";
         
         for (int a = 0; a < str2.length(); a++)
         {
             String str3 = str2.substring(a,a+1);
             
            // System.out.println(str3);
             
             if(str3.indexOf(" ")!=0)
             {
                System.out.print(str3);                 
             }
         }
                   System.out.println();
        

// 第二种方法
             
              String shuzu = "**han*cai**yuan**";         
    
              String a[]= shuzu.split("");
              
                for (int b = 0; b<a.length;b++)
             {
                 if (a[b].equals("*"))
                 {
                    
                 }
                 else
                 {
                     System.out.print(a[b]);
                 }
             }
        System.out.println();

//输出结果:jiaoyaping
//输出结果:hancaiyuan

        
    }

}

 

1月12日作业

标签:

原文地址:http://www.cnblogs.com/yifangtongxing/p/5125660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!