gpt4 book ai didi

c - 使用 strncpy 的 C 语言简单计算器

转载 作者:行者123 更新时间:2023-11-30 20:15:57 25 4
gpt4 key购买 nike

看一下脚本。它计算字幕并打印答案。正如你所看到的,它现在只能计算加号(+)。我从来没有做过任何 C 编码,所以我不知道如何让它计算乘法(X 或 *)、减号(-)和除法(: 或/)。

所以基本上我希望有人能告诉我如何包括乘法、减法和除法。

#include <stdio.h>
#include <stdlib.h>

int total = 0;
void telop(char*s) {
char sum[1024];

if (s[0]==0) return;
if (s[0]=='+')

{
strncpy(sum, &s[1],1);
total += atoi(sum);
}
telop(&s[2]);
}

int main()

{
telop("+1+2+3");
printf("%d", total);
}

最佳答案

如果你改变“-”中的“+”然后它会计算,你也可以将其与“/”或“*”一起使用

void telop (char*s){
char som[1024];
if(s[0]==0) return;

if(s[0]=='+')
{ strncpy (som, &s[1],1);
total += atoi(som); }
if(s[0]=='-')
{ strncpy (som, &s[1],1);
total -= atoi(som); }
if(s[0]=='/')
{ strncpy (som, &s[1],1);
total /= atoi(som); }
if(s[0]=='*')
{ strncpy (som, &s[1],1);
total *= atoi(som); }



telop(&s[2]);
}

关于c - 使用 strncpy 的 C 语言简单计算器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15112741/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com