展开全部
一楼说的没错,在这里给你一个c语言(java也差不多)的样板参考。
#include "stdio.h"
int main()
{
int a,b,c,d;//定义变量
printf("input the number a and b:");//输出提示文
scanf("%d%d",&a,&b);//输入两个整数,分别给a和b
c=a/b;//求商
d=a%b;//求余
printf("the quotient is %d and the remainder is %d",c,d);//输出结果
getchar();//控制台等待接收字符(方便结果查看)
}
#include "stdio.h"
int main()
{
int a,b,c,d;//定义变量
printf("input the number a and b:");//输出提示文
scanf("%d%d",&a,&b);//输入两个整数,分别给a和b
c=a/b;//求商
d=a%b;//求余
printf("the quotient is %d and the remainder is %d",c,d);//输出结果
getchar();//控制台等待接收字符(方便结果查看)
}
追问
逻辑上的我都知道就是不知到怎样用java的语言将答案输出一行,两个答案之间用空格。
展开全部
nt a,b,c,d;//定义变量
printf("input the number a and b:");//输出提示文
scanf("%d%d",&a,&b);//输入两个整数,分别给a和b
c=a/b;//求商
d=a%b;//求余
printf("the quotient is %d and the remainder is %d",c,d);//输出结果
getchar();//控制台等待接收字符(方便结果查看)
}
printf("input the number a and b:");//输出提示文
scanf("%d%d",&a,&b);//输入两个整数,分别给a和b
c=a/b;//求商
d=a%b;//求余
printf("the quotient is %d and the remainder is %d",c,d);//输出结果
getchar();//控制台等待接收字符(方便结果查看)
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
廉政的main()
{
整数A,B;
scanf的(“%d月%d”,&A,B);
printf的(“=%D,B =为%d \ n”,A,B):
printf(“请A + B =%d条\ n”,A + B);
printf的(“A-B =%d个\ n”,A-B);
printf的(“A * B =%d \ N”,A * B);
printf(“请A / B =%d条\ n”,A / B);
printf的(“A%B =%d \ N”A%B);
}
{
整数A,B;
scanf的(“%d月%d”,&A,B);
printf的(“=%D,B =为%d \ n”,A,B):
printf(“请A + B =%d条\ n”,A + B);
printf的(“A-B =%d个\ n”,A-B);
printf的(“A * B =%d \ N”,A * B);
printf(“请A / B =%d条\ n”,A / B);
printf的(“A%B =%d \ N”A%B);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
args = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
System.out.println(Integer.parseInt(args[0])/Integer.parseInt(args[1]));
System.out.println(Integer.parseInt(args[0])%Integer.parseInt(args[1]));
}
}
代码排版可能有些错误,但运行保证对。
同时注意一个点:相除的结果是整数,会出现0,例如2/3=0.如果想改的话可以强制转换类型。
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
args = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
System.out.println(Integer.parseInt(args[0])/Integer.parseInt(args[1]));
System.out.println(Integer.parseInt(args[0])%Integer.parseInt(args[1]));
}
}
代码排版可能有些错误,但运行保证对。
同时注意一个点:相除的结果是整数,会出现0,例如2/3=0.如果想改的话可以强制转换类型。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |