输入多个字符串,并把它们保存在字符数组中,如果输入的字符串个数大于数组的 长度,做异常处理。
取字符串中的第3个字符并输出,如果字符长度小于3,做异常处理,并输出错误信息。(java程序设计)...
取字符串中的第3个字符并输出,如果字符长度小于3,做异常
处理,并输出错误信息。(java程序设计) 展开
处理,并输出错误信息。(java程序设计) 展开
1个回答
展开全部
import java.util.Scanner;
class Test{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
char[] c = new char[5];
String s = input.nextLine();
int i = 0;
while(i<s.length()){
try{
c[i] = s.charAt(i++);
}catch(ArrayIndexOutOfBoundsException e){
System.out.println("输入超出范围");
return;
}
}
try{
if(s.length()<3) throw new Exception("输入字符数量为"+s.length()+"少于3");
System.out.println(c[2]);
}catch(Exception e){
System.out.println(e.getMessage());
}
}
}
class Test{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
char[] c = new char[5];
String s = input.nextLine();
int i = 0;
while(i<s.length()){
try{
c[i] = s.charAt(i++);
}catch(ArrayIndexOutOfBoundsException e){
System.out.println("输入超出范围");
return;
}
}
try{
if(s.length()<3) throw new Exception("输入字符数量为"+s.length()+"少于3");
System.out.println(c[2]);
}catch(Exception e){
System.out.println(e.getMessage());
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |