我编写了很少的程序来计算pi(π)作为整数。现在,我面临一个问题,如何扩展它以计算积分,在启动应用程序时将作为附加参数给出该积分。如何在程序中处理此类参数?
3 回答
ibeautiful
TA贡献1993条经验 获得超5个赞
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv) {
int i, parameter = 0;
if (argc >= 2) {
/* there is 1 parameter (or more) in the command line used */
/* argv[0] may point to the program name */
/* argv[1] points to the 1st parameter */
/* argv[argc] is NULL */
parameter = atoi(argv[1]); /* better to use strtol */
if (parameter > 0) {
for (i = 0; i < parameter; i++) printf("%d ", i);
} else {
fprintf(stderr, "Please use a positive integer.\n");
}
}
return 0;
}
- 3 回答
- 0 关注
- 576 浏览
添加回答
举报
0/150
提交
取消