输入一个二进制数转换成R进制数 摘要: #include int main() { int n,m; while((scanf("%d%d",&n,&m))!=EOF) …… 题解列表 2024年03月28日 0 点赞 0 评论 152 浏览 评分:0.0
C++STL 十进制 转 任意进制 摘要:#include <bits/stdc++.h> #define debuga(v, i) cout << #v << "[" << i << "]" << " = " << v 题解列表 2024年11月16日 0 点赞 0 评论 41 浏览 评分:0.0
转换的问题来了 (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 int main(void) { int i = 0, num = 0, R = 0; char ch = NULL…… 题解列表 2020年03月08日 0 点赞 0 评论 285 浏览 评分:0.0
转换的问题来了(进制转换C++) 摘要:```cpp #include #include #include using namespace std; char s[17] = {'0','1','2' ,'3' ,'4' ,'5'…… 题解列表 2022年02月12日 0 点赞 0 评论 167 浏览 评分:0.0