第三次面试题目

public class TestString {
    String str="want you to know one thing";
    public static void main(String[] args) {
        TestString ts=new TestString();
        ts.testString();
    }
    public void testString(){
        int count=0;
        String[] a=str.split(" ");
        for(int i=0;i             char[] b=a[i].toCharArray();
            for(int j=0;j                 if(b[j]=='n'){
                    count=count+1;
                }
                System.out.println(b[j]);
            }
        }
        System.out.println("一共有"+count+"个n");
    }
}

你可能感兴趣的:(第三次面试题目)