gpt4 book ai didi

C - 打印二维字符数组

转载 作者:太空宇宙 更新时间:2023-11-04 05:52:40 29 4
gpt4 key购买 nike

如何在 C 中打印二维字符数组的元素?

这是我当前的代码:

int main()
{
unsigned int size;

printf("Enter size:\n");
scanf("%d",&size);

char word[size][size];

//Enter the matrix
for(int k = 0; k < (size); ++k){
for (int j = 0; j < (size); ++j){
printf("Enter letter:");
scanf("%c",&word[k][j]);
}
}

//printf("\n");
for (int k = 0; k < size; ++k){
for(int j = 0; j < size; ++j){

printf("%c",word[k][j]);
}
//printf("\n ");
}
printf("\n");
}

执行时,它成对返回元素(使用 4x4 数组)示例:

ab
cd
ef
gh
ij
kl
mn
op

而不是我想要的输出:

abcd
efgh
ijkl
mnop

这是为什么?

最佳答案

改变你的 scanf 解决所有问题

scanf(" %c",&word[k][j]);  // notice the space before '%c'

而且你还需要改变你的打印循环

for (k = 0; k < size; ++k){
for(j = 0; j < size; ++j){
printf("%c",word[k][j]);
}
printf("\n");
}

关于C - 打印二维字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35936358/

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