因此,我试图在击中标志后从命令区域读取值。我不想使用scanf
,因为它不应该暂停。它应该接受如下参数:
run -p 60 10
其中 60 是百分比值,10 是进程数。如何在不使用 scanf 暂停用户输入的情况下将它们读入变量?我需要使用argv[2]
and给它们赋值argv[3]
吗?我想要整数值,而不是字符串。
到目前为止,这是我的代码:
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <ctype.h>
#include <unistd.h>
bool Gamble(int percent);
int main(int argc, char *argv[])
{
int c;
int pflag = 0;
int vflag = 0;
int percent;
int processes;
while ((c = getopt (argc, argv, "-p-v: ")) != -1)
{
switch (c)
{
case 'p':
pflag = 1;
percent = argv[2];
//scanf("%d", &percent);
break;
case 'v':
vflag = 1;
break;
default:
processes = argv[3];
}
}
printf("%d\n", percent);
printf("%d\n", processes);
Gamble(percent);
return 0;
}
PS Gamble 只是一个类,它接受百分比,生成一个随机数,并根据使用随机生成器是否命中通过的百分比返回“成功”或“失败”。