为了账号安全,请及时绑定邮箱和手机立即绑定

java大小写转换的问题 , 请问这里写的有什么错误

java大小写转换的问题 , 请问这里写的有什么错误

夏析 2017-03-17 11:24:42
import java.util.Scanner;public class T2990 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scanner = new Scanner(System.in); String str = scanner.nextLine(); char[] str2 = new char[str.length()];// System.out.println(str.length());        //write your own codes for(int i=0;i<str.length();i++) { if(str2[i] < 97) { str2[i] =(char)(str2[i]-32);  } if(str2[i] > 97) { str2[i] = (char)(str2[i] - 32); } } System.out.println(new String(str2)); }}我的目的是 输入 AsDf输出 aSdF代码好像是错的 , 高手指点下
查看完整描述
  • 1 回答
  • 0 关注
  • 1537 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信