蓝桥杯基础练习-十六进制转十进制(简单)
摘要:用输入输出格式符来解题
```c
#include
int main()
{
long int a;
scanf("%X",&a);
printf("%d\n……
小南解题--十六进制转十进制--53ms
摘要:#最简洁的做法,但是因为限制字数所以,请允许我废话几句a16=input()print(int(a16,16))……
蓝桥杯基础练习-十六进制转十进制
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm> using namespace std;long long……
蓝桥杯基础练习-十六进制转十进制
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { scanf("%llX",&a……
2082: 蓝桥杯基础练习-十六进制转十进制(JAVA)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Test {
public static void main(Strin……
蓝桥杯基础练习-十六进制转十进制(java代码)
摘要:解题思路:注意事项:参考代码:import java.math.BigInteger;import java.util.Scanner;public class lq_2082 { public……
Hifipsysta-2082-蓝桥杯基础练习-十六进制转十进制(C++代码)
摘要:```cpp
#include
#include
#include
using namespace std;
int M2Ten(string mystr, int M){
i……
2082: 蓝桥杯基础练习-十六进制转十进制
摘要:解题思路:注意事项:参考代码:n = input()
def to_ten(x):
dic = {'A':10,'B':11,'C':12,……
蓝桥杯基础练习-十六进制转十进制 -题解(Java代码)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
import java.math.BigInteger;
public class Main {
pub……