三进制小数 (C语言代码) 摘要:解题思路:1.根据题目得出的规律是分子乘3除以分母为当前位数的数,分子乘以3模分母为计算下一位数的分子,分母不变。2.注意1舍2入得问题,与精度有关。参考代码:#include<stdio.h> v…… 题解列表 2017年08月04日 1 点赞 0 评论 1202 浏览 评分:0.0
三进制小数 (C语言代码) 摘要:#include <stdio.h> int main() { int a,b,i,three[11]; double f; while (scanf("%d/%d",&a,&b)!=…… 题解列表 2017年11月08日 0 点赞 0 评论 1006 浏览 评分:0.0
C语言,另类的思路,代码少 摘要: 具体思路我就不说了,看看就好了,因为有一些小瑕疵,辩证地看待,但是应该比较好理解 #include #include int main() { double a, b; …… 题解列表 2022年11月12日 0 点赞 0 评论 119 浏览 评分:0.0
三进制小数 (C语言代码) 摘要:解题思路: 假设数据为 n/m,使用辗转相除法 第一步:n*3/m 得出进制第一位 第二步:n*3%m 得余数,然后用余数继续第一步计算注意事项:参考代码:#include <s…… 题解列表 2019年03月01日 0 点赞 0 评论 448 浏览 评分:0.0
输出超限 那个大佬知道为什么吗 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fun(double res){ int i,a[20]; for(i=0;i<…… 题解列表 2018年10月06日 0 点赞 0 评论 1138 浏览 评分:0.0
1178三进制小数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int fenzi; int fenmu; double sum; w…… 题解列表 2024年07月11日 0 点赞 0 评论 197 浏览 评分:0.0
三进制小数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[]args) { …… 题解列表 2018年05月24日 0 点赞 0 评论 721 浏览 评分:0.0
三进制小数 (C语言代码) 摘要:#include<stdio.h> #include<memory.h> const int base = 3; int main(){ int a, b; int …… 题解列表 2018年10月12日 1 点赞 0 评论 467 浏览 评分:0.0
优质题解 三进制小数-题解(C语言代码) 摘要:####1.注意点 输出样本:是以小数点开头的具有10位精度的3进制数。 多组测试数据:所以需要使用while循环进行判断测试文件的结束; 输入样本:输入的有理数的值都是在0与1之间的。 …… 题解列表 2020年02月25日 0 点赞 0 评论 897 浏览 评分:6.0
优质题解 Manchester- 三进制小数 摘要:解题思路:1.输入分子x,分母y,求出x/y存入num;2.根据小数部分进制转换思路:(1):设转换进制为jinzhi=3进制;(2):假设小数为1/4=0.25①:0.25 * 3= 0.75 整…… 题解列表 2018年01月13日 22 点赞 0 评论 1840 浏览 评分:8.8