20200903Java输出字符串里的大写字母

tech2023-02-28  106

public class Test4_7 { public Test4_7() { // TODO Auto-generated constructor stub } public static void main(String[]args) { String s1="My name is Tom,I caome form China"; for(int i=0;i<s1.length();i++)//.length()表示字符串的长度 { char c=s1.charAt(i);//.charAt(i)表示在s1中第i的位置上的单个字符 if(c>'A'&&c<'Z') { System.out.print(c+" "); } } } }
最新回复(0)