- public class Test3 {
- public static void main(String[] args) throws Exception{
- StringBuffer s = new StringBuffer();
- s.append("abcdekka27qoq");
- for(int i=0;i<s.length();i++)
- {
- int sum=1;
-
- for(int j=i+1;j<s.length();j++)
- {
- if(s.charAt(i)==s.charAt(j))
- {
- sum++;
- s.deleteCharAt(j);
- j--;
- }
- }
- System.out.print(s.charAt(i)+"("+sum+")");
- }
- }
- }
复制代码 以上是我自己写的代码,在eclipse中运行时有提示错误,没有提示哪行,但是运行结果跟我预想的一样,大家有没有谁看的出问题在哪儿?以下是我的运行截图
|
|