为了账号安全,请及时绑定邮箱和手机立即绑定

请问C-读取命令行参数怎么读取

请问C-读取命令行参数怎么读取

C
慕森卡 2019-12-26 10:14:11
我编写了很少的程序来计算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;

}



查看完整回答
反对 回复 2019-12-28
  • 3 回答
  • 0 关注
  • 576 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信