题解 2770: 计算浮点数相除的余数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

计算浮点数相除的余数

摘要:解题思路:注意事项:参考代码:num1,num2 = map(float,input().split())print('%g'%(num1%num2))……

利用math中的求余

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>double a, b, r;int main() { scanf("%lf%lf", &a, &b……

普通解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ double r1,r2,r; scanf("%lf%lf",&r1,&r2); int k = r1/r2;……

普通解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ double a ,b ,c,d; scanf("%lf%lf\n%lf%lf……

计算浮点数相除的余数

摘要:解题思路:思考 k 应该等于什么注意事项:假使余数等于0时,可以知道k的关系式参考代码:#include<stdio.h>int main(){    double a,b;    scanf("%l……

java--study||O.o

摘要:参考代码:import java.util.Scanner; import java.math.BigDecimal; public class Main {   public static……