Str_turn】的更多相关文章

public class Str_turn { public static void main(String args[]) { String Str1 = new String("This is a book."); char temp[]=Str1.toCharArray(); temp[temp.length-2]-=32; if(temp[0]<91) temp[0]+=32; String Str2 =""; for(int i=temp.lengt…