gpt4 book ai didi

c++ - 读取变量作为执行时的参数

转载 作者:太空宇宙 更新时间:2023-11-04 02:40:39 24 4
gpt4 key购买 nike

我写了一个程序,只需要输入一个整数 (N)。
我想以某种方式编写它,以便它在执行时采用此值,如下所示:

g++ solve.cpp -o solve
solve 6

其中 6 (N) 可以是任意整数。


有人知道怎么做吗?我试过使用:

int main(int N) { ... }

我最终收到了警告:

solve.cpp:5:5: warning: ‘int main(int)’ takes only zero or two arguments [-Wmain]
int main(int N)

仍然让它编译,但是现在无论我对 N 使用什么输入,它最终都会得到 N = 2。

知道如何做到这一点吗?

提前致谢!

最佳答案

这是你需要的:

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

int main(int argc, char *argv[])
{
if(argc != 2)
{
printf("not enough numbers or too many\n");
exit(1);
}

printf("%d\n", atoi(argv[1]));

return 0;
}

argc 值实际上是你的参数数量 + 1,所以如果你只执行 solve,那么 argc 的值将为 1。同时传递一个数字 (N ) 作为参数,例如:solve 6,argc 将为 2。这就是我的 if 条件的解释,因为如果 argc 不同于 2,您可能会返回错误。

关于c++ - 读取变量作为执行时的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32251864/

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