编写程序以命令行参数形式输入两个整数,计算并输出两个整数相除的商和余数,程序中必须对无命令行参数或少

 我来答
猥琐骚年叶啊雯
2016-05-19
知道答主
回答量:2
采纳率:100%
帮助的人:2014
展开全部
public class CatchsDemo {
public static void main(String args[]){
String x = "";
String y = "";
int i = 0;
int j = 0;
try{
x = args[0];
y = args[1];
i = Integer.parseInt(x);
j = Integer.parseInt(y);
}catch(IndexOutOfBoundsException e){
System.out.println("没有输入命令行参数");
System.exit(0);
}catch(NumberFormatException e){
System.out.println("输入数据格式不正确");
return;
}
finally{
System.out.println("输入的第一个数据为:" + x + " 输入的第二个数据为:" + y);
int sun = 0; int mun = 0;
sun = i / j;
mun = i % j;
System.out.println("两个数的商为:" + sun + " 两个数的余数为:" + mun);
}
System.out.println("here is the end of the program");
}
}
kongrong_1
2010-12-10 · TA获得超过198个赞
知道答主
回答量:203
采纳率:0%
帮助的人:0
展开全部
int main(int argc,char *argv[])
{
int x;
if(argc<3)
{
printf("请输入2个整数。");
return 0;
}
x=arg[0]%arg[1];
printf("商是 %d\n",x);
x=arg[0]-arg[1]*x;
printf("余数是 %d",x);
retrun 0;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式