转换的问题来了 (C++代码) 摘要:解题思路: 思路很简单,不断辗转取余数再用一个数组存储余数,不过这里要注意几个问题: 1.对于超过十进制的转换取余数时要考虑用'A'~'F'代替10~15; 2.要注意对十进制 0 的处理; …… 题解列表 2019年07月31日 0 点赞 0 评论 426 浏览 评分:7.0
转换的问题来了-题解(C语言代码) 摘要:没啥好说的 ``` #include int main() { const char s[] = "0123456789ABCDEF"; int n, r; whil…… 题解列表 2019年07月27日 0 点赞 0 评论 443 浏览 评分:9.9
转换的问题来了 (C语言代码) 摘要:#include<stdio.h> int main() { int n,t,leap,count; while(scanf("%d%d",&n,&t)!=EOF){//读入数据 l…… 题解列表 2018年06月23日 0 点赞 0 评论 448 浏览 评分:0.0
转换的问题来了 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<math.h> using namespace std; const i…… 题解列表 2018年06月18日 0 点赞 0 评论 475 浏览 评分:8.0
转换的问题来了 (C++代码) 摘要:解题思路: 之前的OJ有问题,交的我头有点大。······参考代码:#include<bits/stdc++.h> using namespace std; typedef long…… 题解列表 2018年06月18日 1 点赞 0 评论 501 浏览 评分:0.0