主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
ccccccyes
2024年8月26日 23:39
进制转换3 题解:
P1422
回复 0
|
赞 1
|
浏览 1.1k
vector总是越界输出,输出乱码 已扩充的值失效 //输入可能是字符和数字混合 //最大为36进制数就是只有26个字母 //输出也要字符和数字混合 #include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ int m,n,w; long long num = 0; string str,ba; //不用vector<char> 就是string cin>...
小酒
2024年3月15日 17:17
进制转换3 题解:
P1422
回复 1
|
赞 2
|
浏览 778
1422解题思路 最开始出现80%,最后修改sum的类型为long,Accepted!! #include <bits/stdc++.h> using namespace std; int main() { int m,n; char x; scanf("%d %d",&m,&n); getchar(); char b[105]; gets(b); int l=strlen(b); char a[105]={0}; long sum=0; //转化为10进制 for(int j=0;j...
myming
2024年7月20日 20:48
进制转换3 题解:
P1422
回复 0
|
赞 0
|
浏览 418
#include<bits/stdc++.h> using namespace std; void f(int M, int N,char x[]){ long long ans = 0; int len = strlen(x); for (int i = 0; i < len; i++){ ans = ans * M; &nb...
15984861226
2024年7月14日 02:10
进制转换3 题解:X(M) -> n(10) -> ret(N)
P1422
回复 0
|
赞 0
|
浏览 387
思路:X(M) -> n(10) -> ret(N),第一次提交80%,将int改为long就100%。 代码(c++)如下: #include <iostream> using namespace std; void rank_reverse(char* a,long M,long N){ char Alpha[37]="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char alpha[37]="01...
iRR
2024年6月12日 17:34
进制转换3 题解:
P1422
回复 0
|
赞 0
|
浏览 448
#include<iostream> #include<stack> using namespace std; int main() { int a,b; cin>>a>>b; string s; cin>>s; long long sum = 0; for(int i = 0;i<s.size();i++) { sum *= a; if(s[i]<='9'&&s[i]>=0) sum+= s[i] - '0'; else sum += ...
中国人民万岁
2024年3月27日 23:17
进制转换3 题解:思想:m->10->n
P1422
回复 2
|
赞 0
|
浏览 668
#include <bits/stdc++.h> using namespace std; #define ll long long int val(char x) { if (x >= '0' && x <= '9') { return x - '0'; } else {  ...
中国人民万岁
2024年3月27日 23:19
进制转换3 题解:思想:m->10->n
P1422
回复 0
|
赞 0
|
浏览 516
#include <bits/stdc++.h> using namespace std; #define ll long long int val(char x) { if (x >= '0' && x <= '9') { return x - '0'; } else {  ...
flipped
2024年3月22日 19:55
进制转换3 题解:
P1422
回复 0
|
赞 0
|
浏览 784
#include <stdio.h> #include <string.h> int main() { int m, n; char x[1000]; char a[1000]; int j = 0; scanf("%d %d", &m, &n); scanf("%s", &x); long long int ans = 0;//用于存储十进制中间结果。 //101 5 for (int i = 0; i < strlen(x); i++) { ans *= m; if ...
Kohi
2024年3月17日 19:26
进制转换3 题解:
P1422
回复 0
|
赞 0
|
浏览 815
#include <bits/stdc++.h> using namespace std; string division(string s, const int &from, const int &to, int &remain){ remain = 0; for(int i = 0; i < s.size(); i++){ int temp = remain * from + s[i]; ...
渐鸿于陆
2024年3月17日 13:08
进制转换3 题解:
P1422
回复 0
|
赞 0
|
浏览 629
#include"stdio.h" #include"string.h" int main(void){ char cin[105]; int x,y; long long int ans = 0; scanf("%d%d",&x,&y); scanf(&qu...
1
2
3
题目
进制转换3
题解数量
30
发布题解
热门题解
1
通用进制转换模板(注意只有部分测试集通过情况)
2
python求解
3
仔细读题,M-10-N
4
搭桥过程:M转换10进制,再转N进制;c++
5
进制转换3 题解:
6
m进制转换为n进制
7
进制转换3 题解:
8
m进制转n进制
9
没有用M就AC了?
10
进制转换3 题解:C++实现