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

字符串统计满2的进行拼接

时间:2017-11-10 21:58:22      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:package   ring   test   log   port   for   out   har   can   

package Campus;

import java.util.Scanner;

public class Test_T1 {

    public static void main(String[] args) {
        
        StringBuffer s=joint();
        System.out.println(s);
    }
    public static StringBuffer joint(){
        Scanner cin = new Scanner(System.in);
        String str = cin.next();
        char[] a = str.toCharArray();
        
        int count, len = a.length;
        
        for(int i = 0; i < len - 1; i++){
            count = 0;
            for(int j = i+1; j < len; j++){
                if (a[j] != 0 && a[j] == a[i]){
                    count = count + 1;
                    a[j] = 0;
                }
            }
            if (count == 0 || count > 1) a[i] = 0;
        }
        StringBuffer str1 = new StringBuffer();
        for(int i = 0; i < len; i++){
            if (a[i] != 0)  str1.append(a[i]);
        }
        return str1;
    }

}

  

字符串统计满2的进行拼接

标签:package   ring   test   log   port   for   out   har   can   

原文地址:http://www.cnblogs.com/smuxiaolei/p/7816233.html

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