改一下:(1)
public class Q{
public static void main(String[] args){
String a[]={"The first snow came","how beautiful it was"}; //用{ }初始化
int count=0;
int and=0;
for(int i=0;i<a.length;i++){ //初始化i=0
for(int j=0;j<a[i].length();j++){ //你实际上要比较的是数组里的每一个字符串元素
if(a[i].charAt(j)=='t') //a[j].charAt(i)才是你需要比较的
count+=1;
else if (a[i].charAt(j)=='T')
and+=1;
}}
System.out.println("t出现的次数:"+count);
System.out.println("T出现的次数:"+and);
}
}
public class Q{
public static void main(String[] args){
String a[]={"The first snow came","how beautiful it was"}; //用{ }初始化
int count=0;
int and=0;
for(int i=0;i<a.length;i++){ //初始化i=0
for(int j=0;j<a[i].length();j++){ //你实际上要比较的是数组里的每一个字符串元素
if(a[i].charAt(j)=='t') //a[j].charAt(i)才是你需要比较的
count+=1;
else if (a[i].charAt(j)=='T')
and+=1;
}}
System.out.println("t出现的次数:"+count);
System.out.println("T出现的次数:"+and);
}
}