具有getopt函数的除数数

时间:2015-07-01 06:54:05

标签: c string command-line-arguments getopt

我正在做一个程序,它接收一个数字并给你除数的数量。 例如 在cmd:

practica -n 30

预期产出:

  

1,2,3,5,6,10,15,30

我有这段代码:

void divisor(char *temp1);
int main(int argc,char **argv){
int option;
char *n;
 while((option =getopt(argc,argv,"n")) !=-1){
  switch(option){
  case 'n':
  n=optarg;
  break;
 }
}

divisor(n);
}

void divisor(char *temp1){
char f=*temp1;
int n=f-'0';
int a;
a=1;
while (a<n)
{
 if(n%a==0)
 printf("%d,",a);
 a++;
}
a=n;
if(n%a==0)
printf("%d",a);
printf("\b ");
}

我正在使用命令行,程序关闭。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:4)

我认为,您的getopt()来电应该是

while((option =getopt(argc,argv,"n:")) !=-1){  //notice the :

因为您将为该选项提供参数(值)。

那就是说,在你的代码中,在divisor()函数里面,

char f=*temp1;
int n=f-'0';

看起来不对。 temp是一个char指针,取消引用指针只会为您提供存储的第一个char的值,而预期值30不会存储为单个char 1}},而不是它以字典格式存储。

我认为,您可以使用strtol()将词典表示转换为int值,例如

int x = strtol(temp, NULL, 0);