编写JAVA程序:从键盘上输入字符串和子字符串开始位置与长度,截取该字符串的子串并输出

请各位大侠帮帮忙了... 请各位大侠帮帮忙了 展开
 我来答
极品宅男44
2013-01-02 · TA获得超过251个赞
知道小有建树答主
回答量:199
采纳率:0%
帮助的人:131万
展开全部
import java.util.*;
public class App5_8
{
public static void main(String []args)
{
System.out.println("请输入一个字符串:");
String str = new Scanner(System.in).nextLine();
System.out.println("请输入子串开始位置:");
int str1 = new Scanner(System.in).nextInt();
System.out.println("请输入子串的长度:");
int str2 = new Scanner(System.in).nextInt();
System.out.println(str.substring(str1,str1+str2));
}
}
匿名用户
推荐于2016-05-06
展开全部
public class Substring {
public static void main(String[] args) throws Exception{
System.out.print("请输入一个字符串 ->:");
String str=readLine();
System.out.println("请输入子字符串的起始位置 ->:");
int start=Integer.parseInt(readLine());
System.out.println("请输入子字符串的长度 ->:");
int len=Integer.parseInt(readLine());
System.out.println("子字符串: "+str.substring(start,start+len));
}
private static String readLine()throws Exception{
byte[] buff=new byte[1024];
int read=System.in.read(buff);
return new String(buff,0,read).trim();
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式