gpt4 book ai didi

c - 更新的命令行参数

转载 作者:太空宇宙 更新时间:2023-11-04 08:42:00 25 4
gpt4 key购买 nike

所以我终于能够让我的换位密码发挥作用了。但我需要能够从命令行参数中获取变量。例如,由 transposition[] 给出的我的换位表可能会根据命令行参数中的输入而发生变化,同时在命令行中给定一个 npos,它决定了我总共移动了多少个字符。例如,如果我在命令行中输入“a.out fileinput.txt fileoutput.txt 2 4 2 4 0 1”,它应该可以让我的程序识别出转置数组中只有 4 个变量和转置中的数字数组是“2 4 0 1”。基本上,我只想知道是否有办法从命令行获取数字,然后将它们存储到一个数组(特别是转置数组)中。我曾尝试使用 sscanf 在命令行中接收不同的参数,但它似乎不起作用。

已更新 当前代码:

#include <stdio.h>

int main(int argc, char *argv[]){

char transposition[]={};
char input[256];

char ch;
int i, j, k, npos;

FILE *file1=fopen(argv[1], "r");
FILE *file2=fopen(argv[2], "w");

sscanf(argv[3], "%d", &npos);
for(i=0;i<npos;++i){
sscanf(argv[4+i], "%d", &k);
transposition[i] = k;
}

int len= sizeof(transposition);
char temp[len];

while(fgets(input,sizeof(input),file1)!=NULL){
i=0;
do {
for(j=0;j<len;j++){
ch = input[i];
if(ch != '\n' && ch != '\0'){
temp[j] = ch;
++i;
} else {
temp[j] = ' ';
}
}
if(temp[0] != '.')
for(k=0;k<len;k++){
fprintf(file2,"%c", temp[transposition[k]]);
}
}
while(ch != '\n' && ch != '\0');
fprintf(file2,"\n");
}
return 0;
}

原始工作代码:

#include <stdio.h>

int main(int argc, char *argv[]){
char transposition[]={2,4,0,1,3};
char input[256];
int len= sizeof(transposition);
char ch, temp[len];
int i, j, k;

FILE *file1=fopen(argv[1], "r");
FILE *file2=fopen(argv[2], "w");

while(fgets(input,sizeof(input),file1)!=NULL){
i=0;
do {
for(j=0;j<len;j++){
ch = input[i];
if(ch != '\n' && ch != '\0'){
temp[j] = ch;
++i;
} else {
temp[j] = ' ';
}
}
if(temp[0] != '.')
for(k=0;k<len;k++){
fprintf(file2,"%c", temp[transposition[k]]);
}
}
while(ch != '\n' && ch != '\0');
fprintf(file2,"\n");
}
return 0;
}

最佳答案

...
sscanf(argv[4], "%d", &npos);
char transposition[npos];
...
for(i=0;i<npos;++i){
transposition[i] = atoi(argv[5+i]);//atoi : <stdlib.h> or sscanf(argv[5+i], "%d", &k);transposition[i] = k;
}
...

关于c - 更新的命令行参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23176523/

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