三进制小数 (C语言代码) 摘要:解题思路:三进制转换与二进制类似,三进制小数的转换是乘以3,取整,然后顺序输出即可。注意的是最后一位要四舍五入哦。 ```c #include #include int main() { …… 题解列表 2018年10月25日 0 点赞 0 评论 798 浏览 评分:9.9
三进制小数 (C语言代码) 摘要:#include<stdio.h> #include<memory.h> const int base = 3; int main(){ int a, b; int …… 题解列表 2018年10月12日 1 点赞 0 评论 465 浏览 评分: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 评论 1135 浏览 评分:0.0
三进制小数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[]args) { …… 题解列表 2018年05月24日 0 点赞 0 评论 720 浏览 评分:0.0
三进制小数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> using namespace std; int mai…… 题解列表 2018年05月13日 0 点赞 0 评论 541 浏览 评分:9.9
优质题解 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 评论 1839 浏览 评分:8.8
三进制小数 (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 评论 1003 浏览 评分:0.0
三进制小数 (C++代码)(第11位大于1.5才能进位) 摘要:解题思路:开始蜜汁用double计算出来结果不给过后来发现应该让第11位大于1.5才能进位注意事项:float精度不够,,需要用double参考代码:正确代码如下#include <stdio.h> …… 题解列表 2017年08月06日 5 点赞 0 评论 1295 浏览 评分:9.9
三进制小数 (C语言代码) 摘要:解题思路:1.根据题目得出的规律是分子乘3除以分母为当前位数的数,分子乘以3模分母为计算下一位数的分子,分母不变。2.注意1舍2入得问题,与精度有关。参考代码:#include<stdio.h> v…… 题解列表 2017年08月04日 1 点赞 0 评论 1202 浏览 评分:0.0