欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1、编写一个程序,将一个小写字母(如a)转换成相应的大写字母并显示输出。

程序员文章站 2024-02-02 15:46:04
...

import java.util.Scanner;

public class Zuoye1 {
/**
* 编写一个程序,将一个小写字母(如a)
* 转换成相应的大写字母并显示输出。
*
*
*
* @param args
*/

public static void main(String[] args) {
	
	Scanner input=new Scanner(System.in);
	
	//循环输入小写字母
	while(true){
		
		System.out.println("请输入小写字母:(任意字母继续/0退出)");
		
		String word=input.next();
		
		//输入0退出循环
		if(word.equals("0")){
			System.out.println("谢谢您的使用!");
			break;
		}
		
		String words=word.toUpperCase();
		
		System.out.println("转换后的效果为:"+words);
		
	}//while
	
	
}

}