gpt4 book ai didi

c - 如何从c中的命令行参数传递字符串函数

转载 作者:行者123 更新时间:2023-11-30 21:45:55 25 4
gpt4 key购买 nike

示例:

总和 2 3

总和是5

乘2 3

产品是 6

我需要从命令提示符传递3个变量,以便从第一个字符串开始它应该转到一个函数并执行剩余两个数字的操作

最佳答案

这就是想法:

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

int main(int argc, char *argv[])
{
if (argc != 4)
{
printf(" useage: %s operation num1 num2\n);", argv[0]);
return 1;
}

int x = atoi(argv[2]);
int y = atoi(argv[3]);

if (strcmp("sum", argv[1]) == 0)
{
...
}

...

return 0;
}

关于c - 如何从c中的命令行参数传递字符串函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39485968/

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