蓝桥杯基础练习-十六进制转十进制(简单)
摘要:用输入输出格式符来解题
```c
#include
int main()
{
long int a;
scanf("%X",&a);
printf("%d\n……
2082: 蓝桥杯基础练习-十六进制转十进制(JAVA)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Test {
public static void main(Strin……
]十六进制转十进制 -题解(C语言代码)满分题解!!
摘要: #include
int main()
{
long long int x;
scanf("%x",&x);
printf("%lld"……
蓝桥杯基础练习-十六进制转十进制 -题解(C语言代码),7行
摘要:## 内容字数太少了,但就这么简单
```c
#include
int main(){
int n;
scanf("%x",&n);//输入为16进制数
printf("%d",n……
蓝桥杯基础练习-十六进制转十进制 -题解(C语言代码)
摘要:解题思路:
使用c语言中的格式化输入输出
简单粗暴
```c
# include
int main()
{
int n;
while(scanf("%x",&n)!=EOF)
……
蓝桥杯基础练习-十六进制转十进制 -题解(C语言代码)
摘要: #include
#include
int f(char s[]) //16进制转10进制
{
int ans=0; //要输出的答案
……