(Java)求大佬帮忙写一下

编写应用程序,该应用程序有一个方法,两个String类型的形参,要求输入两个数字字符串,例如“23”,转化为两个int型数据,并求出它们的商,且程序能够捕获NumberF... 编写应用程序,该应用程序有一个方法,两个String类型的形参,要求输入两个数字字符串,例如“23”,转化为两个int型数据,并求出它们的商,且程序能够捕获NumberFormatException异常和ArithmeticException异常。(提示:1/0,抛出ArithmeticException异常) 展开
 我来答
队长别开炮A
2020-04-02 · TA获得超过216个赞
知道答主
回答量:137
采纳率:71%
帮助的人:7.3万
展开全部

import java.util.*;
public class interView {
public static void main(String[] args) {
System.out.println("输入第一个String类型:");
String a = null;
Scanner cin = new Scanner(System.in);
while (cin.hasNext()) {
a = cin.nextLine();
break;
}
System.out.println("输入第二个String类型:");
String b = null;
Scanner cin1 = new Scanner(System.in);
while (cin.hasNext()) {
b = cin.nextLine();
break;
}
Remainder ss = new Remainder();
ss.getRemainder(a, b);
}
public static class Remainder {
public void getRemainder(String a, String b) {
int i  = Integer.parseInt(a);
int j = Integer.parseInt(b);
try {
int n = i / j;
System.out.println("两个数的商:" + n);
} catch (Exception e) {
e.printStackTrace();
}
}
}
}

结果如下:   1、NumberFormatException

                 2、ArithmeticException

      3、正常

匿名用户
2020-04-02
展开全部
public class Test {
private static void quotient(String num1, String num2) {
try {
int n1 = Integer.parseInt(num1);
int n2 = Integer.parseInt(num2);
System.out.println("商为:" + n1 / n2);
} catch (NumberFormatException e1) {
System.out.println("NumberFormatException");
} catch (ArithmeticException e2){
System.out.println("ArithmeticException");
}
}

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String num1 = scanner.next();
String num2 = scanner.next();
quotient(num1, num2);
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式