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

有趣的小题目

时间:2018-07-21 11:51:58      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:file   pre   连续   string   print   public   system   rgs   字符   

有趣的小题目

public class file {
/*检测文件中a,b所在的行数和所在的位置,
 * 例如:
 * 字符串“ffgtahtibjkli”输出
 * 1
 * 5
 * 10
 * 
 * 注意:
 * 1.要检测出所在的行数
 * 2.考虑aabb这种情况
 * 3.考虑出现多个a但是不连续的情况
 * */
public static void main(String[] args) {
    int count1=0;
    int count2=0;
    int q = 0;
    int[] t = null;
    String str2=null;
    String str1 = "asdfghjkal\nzxcvbnm\nasdfaabbnm";
    String[] len = str1.split("\n");
    //System.out.println(len.length);
    for(int i=0;i<len.length;i++) {
        str2 = len[i];
        System.out.println("这是第"+(i+1)+"行");
        for(int j = 0; j < str2.length(); j++){
            if(str2.charAt(j)==‘a‘){
            count1++;
            System.out.println(j+1);
                }
            if(str2.charAt(j)==‘b‘){
            count2++;
            System.out.println(j+1);
                }
            }
    }
    
    
    System.out.println("a共有"+count1+"个");
    System.out.println("b共有"+count2+"个");
    //System.out.println("Hello world!");
    }
}

有趣的小题目

标签:file   pre   连续   string   print   public   system   rgs   字符   

原文地址:https://www.cnblogs.com/renxiuxing/p/9345640.html

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