Java程序设计题目

2025-01-03 21:09:57
推荐回答(2个)
回答1:

String
upString(String
s);对形参s进行大写转换,并返回转换后的字符串给调用者。
String
lowString(String
s);
对形参s进行小写转换,并返回转换后的字符串给调用者。
2)
main()方法:
public
static
void
main(String
args[])
{
String
s;
BufferedReader
br=new
BufferedReader(InputStreamReader(System.in));
System.out.println(“请输入要转换的字条串:”)
s=br.readLine()
if(s!=null)
{
System.out.println(s+”转换为大写后为:”+Covert.upString(s));
System.out.println(s+”转换为小写后为:”+Covert.lowString(s));
}
else
System.out.println(“输入错误。”);
}

回答2:

输入一段话,进行文字综合处理,主要包括:
(1) 统计单词的个数;
(2) 统计标点符号的个数;
(3) 删除单词this;
(4) 替换do为do not。