给出字符串,把首字母转换为大写,其余转换为小写,只考虑英文

问题描述:

从键盘录入一段字符串,把首字母转换为大写,其余转换为小写,只考虑英文

方法一:最原始的方法
 *   分析:1、将用户输入的字符串转换为字符数组
 *              2、根据要求,分离首字母,将其通过valueOf()变为字符串,再通过toUpperCase()转换为大写字母
 *              3、将除首字母外,将其余字符数组独立出来分别通过valueOf()转化为字符串,再通过toLowerCase()转换为小写字母
 方法二:精简
 *   分析:思想等同于方法一
 *              substring()--->截取其中一段字符串
 *              concat()---->连接两个字符串

//方法一
public class lj02 {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		//把首字母转换为大写,其余转换为小写,只考虑英文
		//eg:helloWORLD
		System.out.println("请输入字符串");
		Scanner sc=new Scanner(System.in);
		String str=sc.nextLine();
		char[] chs = str.toCharArray() ;//将字符串转换为字符数组
		String s1 = String.valueOf(chs[0]) ; //将字符转化为字符串类型
		System.out.print(s1.toUpperCase());
		for(int j=1;j
//方法二
public class lj02 {
	public static void main(String[] args) {
		System.out.println("请输入字符串");
		Scanner sc=new Scanner(System.in);
		String str=sc.nextLine();
		String s1=str.substring(0,1);//截取str的一个子字符串,从0开始,到1截止
		String S1=s1.toUpperCase();
		String s2=str.substring(1);//截取str的一个子字符串,从1开始至str字符串结束
		String S2=s2.toLowerCase();
		System.out.println(S1+S2);//也可以写为System.out.println(S1.concat(S2));
	}	
}

日常鸡汤:每个不曾起舞的日子,都是对生命的辜负。。。

你可能感兴趣的:(基础篇)