gpt4 book ai didi

c - 仅替换用户在 c 中输入的零

转载 作者:行者123 更新时间:2023-11-30 18:46:22 25 4
gpt4 key购买 nike

我只想将用户输入的零特定数字替换为不同的数字。这是到目前为止我的代码

#include <stdio.h>
#include <stdio.h>

int main() {
int figOutVar[9][9];
printf("please enter the figure me out numbers\n");
for(int i=0; i<9; i++) {
for(int j=0; j<9; j++) {
printf("enter %d %d: ",i+1,j+1);
scanf("%d",&figOutVar[i][j]);
}
}

printf("the figure me out question is: \n");
for(int i=0; i<9; i++) {
for(int j=0; j<9; j++) {
if (figOutVar[i] == 0) {
return true;
}
if(j!=0) {
printf(" | ");
}
if(j==3) {
printf(" | ");
}
if(j==6) {
printf(" | ");
}
printf("%d",figOutVar[i][j]);

}
printf("\n");
}

return 0;
}

当使用输入进行编译时

0 | 4 | 0 |  | 2 | 0 | 0 |  | 5 | 0 | 3
3 | 0 | 0 | | 9 | 0 | 0 | | 7 | 1 | 0
7 | 6 | 0 | | 0 | 0 | 0 | | 0 | 0 | 0
5 | 0 | 1 | | 0 | 0 | 8 | | 9 | 0 | 0
0 | 0 | 0 | | 5 | 0 | 3 | | 0 | 0 | 0
0 | 0 | 4 | | 1 | 0 | 0 | | 6 | 0 | 2
0 | 0 | 0 | | 0 | 0 | 0 | | 0 | 9 | 4
0 | 8 | 3 | | 0 | 0 | 4 | | 0 | 0 | 5
4 | 0 | 5 | | 0 | 0 | 1 | | 0 | 8 | 0

我想将用户输入的零替换为特定的数字或变量,零代表空格或未填充的答案。非常期待您的帮助,谢谢。

最佳答案

如果您的问题像看起来一样简单,那么答案也应该很简单。只需运行 for,检查数组中是否有零。

for(int i=0;i<9;i++){
for(int j=0;j<9;j++){
if(figOutVar[i][j] == 0){
figOutVar[i][j] = //here you can replace the zero with something else
}
}
}

或者,如果您实际上不想替换原始值,则可以在代码找到零时打印其他内容。

关于c - 仅替换用户在 c 中输入的零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51932209/

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