概述
本文最后更新于 329 天前,其中的信息可能已经有所发展或是发生改变。
题目描述
A/B Problem
Write a program which reads two integers a and b, and calculates the following values:
a ÷ b: d (in integer)
remainder of a ÷ b: r (in integer)
a ÷ b: f (in real number)
输入
Two integers a and b are given in a line.
输出
Print d, r and f separated by a space in a line. For f, the output should not contain an absolute error greater than 10^-5.
注:此题为特殊判断机制(special judge),精确到小数点后6位(long double默认精确度)即可。
#include<bits/stdc++.h>
using namespace std;
int main(){
long double a,b;
scanf("%Lf %Lf",&a,&b);
int c=(int)a;
int d=(int)b;
printf("%d %d %Lf",c/d,c%d,a/b);
return 0;
}
最后
以上就是懵懂含羞草为你收集整理的A / B Problem的全部内容,希望文章能够帮你解决A / B Problem所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复