gpt4 book ai didi

c - 在数组中输入 3 个字母,字母之间有空格

转载 作者:行者123 更新时间:2023-11-30 20:36:07 25 4
gpt4 key购买 nike

我需要在 char 数组上输入 3 个字母或数字,它们之间有空格。我需要使用 scanf 因为我们没有学习任何其他方法。这是我的代码:

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

void main(){

char lista[3];
int x;
printf("Enter 3 letters with space between them : ");
scanf_s(" %s", lista, sizeof(lista));
}

最佳答案

char c[3];
int count = 0;

printf("Enter 3 chars separated by space and press enter :");
while (count < 3)
{
scanf("%c%*[ ]", &c[count]); // *[ ] ignores the empty spaces after each character
count++;
}

printf("c1:%c\n", c[0]);
printf("c2:%c\n", c[1]);
printf("c3:%c\n", c[2]);

关于c - 在数组中输入 3 个字母,字母之间有空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36750219/

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