鱼C论坛

 找回密码
 立即注册
查看: 1391|回复: 3

c++

[复制链接]
发表于 2023-11-13 19:18:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
用函数实现将一个以字符串形式表示的十六进制数转换为一个十进制整数。例如,输入”A2”转换为162。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-11-13 19:18:48 | 显示全部楼层
#include <iostream>
#include <string>
#include <cmath>

int hexToDecimal(std::string hex) {
    int decimal = 0;
    int power = 0;
    for (int i = hex.length() - 1; i >= 0; i--) {
        int digitValue;
        if (hex[ i] >= '0' && hex[ i] <= '9') {
            digitValue = hex[ i] - '0';
        } else if (hex[ i] >= 'A' && hex[ i] <= 'F') {
            digitValue = hex[ i] - 'A' + 10;
        } else if (hex[ i] >= 'a' && hex[ i] <= 'f') {
            digitValue = hex[ i] - 'a' + 10;
        } else {
            throw std::invalid_argument("Invalid hexadecimal digit");
        }
        decimal += digitValue * pow(16, power);
        power++;
    }
    return decimal;
}

int main() {
    std::string hex = "A2";
    int decimal = hexToDecimal(hex);
    std::cout << "Hexadecimal " << hex << " is equivalent to decimal " << decimal << std::endl;
    return 0;
}
这段代码定义了一个名为hexToDecimal的函数,它接受一个十六进制字符串作为输入,并返回一个对应的十进制整数。在函数内部,通过从字符串的末尾开始遍历每个十六进制位,并根据其对应的十进制值以16的幂的形式累加到结果中。最后,在main函数中调用hexToDecimal函数并输出结果。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-13 19:19:46 | 显示全部楼层
#include <iostream>#include <string>#include <cmath>using namespace std;int hexToDec(const string& hex) {    int dec = 0;    int power = 0;    for (int i = hex.size() - 1; i >= 0; i--) {        char digit = hex[i];        int value;        if (isdigit(digit)) {            value = digit - '0';        } else {            value = toupper(digit) - 'A' + 10;        }        dec += value * pow(16, power);        power++;    }    return dec;}int main() {    string hexString = "A2";    int decimal = hexToDec(hexString);    cout << "The decimal equivalent of " << hexString << " is " << decimal << endl;    return 0;}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-11-13 19:32:13 | 显示全部楼层
sh-5.2$ cat main.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>

void exec_bc(const char *str) {
    int pipe_fd[2];
    if(pipe(pipe_fd) == -1) { // 创建管道
        perror("pipe");
        exit(EXIT_FAILURE);
    }

    pid_t pid = fork();
    if(pid == -1) {
        perror("fork");
        exit(EXIT_FAILURE);
    } else if(pid == 0) {                          // 子进程
        if(dup2(pipe_fd[0], STDIN_FILENO) == -1) { // 将管道输入重定向到标准输入
            perror("dup2");
            exit(EXIT_FAILURE);
        }
        close(pipe_fd[0]);
        close(pipe_fd[1]);

        execlp("bc", "bc", NULL); // 调用bc程序
        // 如果execlp函数执行失败,输出错误信息并直接退出程序。
        perror("execlp failed");
        exit(EXIT_FAILURE);
    } else {                                 // 父进程
        write(pipe_fd[1], str, strlen(str)); // 将str写入管道
        close(pipe_fd[0]);
        close(pipe_fd[1]);
        // 不需要获取子进程的退出状态,直接使用NULL即可。
        waitpid(pid, NULL, 0);
    }
}

int main() {
    char buff[1024];
    fgets(buff, 1024, stdin);
    exec_bc(buff);
    return 0;
}
sh-5.2$ g++ -g3 -Wall -o main main.c
sh-5.2$ ./main
ibase=16; A2
162
sh-5.2$
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 04:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表