public class test {
/**
* 把“hello world”的首字母大写其他的小写,打印在控制台
*/
public static void main(String[] args) {
String str = "hello world";
StringBuffer sb1 = new StringBuffer();
StringBuffer sb2 = new StringBuffer();
int a = str.indexOf(" "); //记录下空格的位置
String str1 = str.substring(0,5); //截取出两个单词
String str2 = str.substring(6);
str1 = str1.replace(str1.charAt(0), 'H');
str2 = str2.replace(str2.charAt(0), 'W');
str = str1.concat(" " + str2);
System.out.println(str);
// sb1.append(str1);
// sb2.append(str2);
//
// sb1.replace(0, 1, "H");
// sb2.replace(0, 1, "W");
// sb1.append(" " + sb2);
// str = sb1.toString();
// System.out.println(str);
}
}
不知道这样算不算合格 |