gpt4 book ai didi

c - scanf 函数跳过 while 循环中的值来扫描字符值

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

#include<stdio.h>

int main()
{
int i,t;
char c;
scanf("%d",&t);
while(t--)
{
scanf("%s",&c);
printf("%c",c);
}
return 0;
}

在 while 循环中为什么它会跳过一些值。但它适用于整数值

最佳答案

%s 用于扫描字符串(不是char的),改为%c

关于c - scanf 函数跳过 while 循环中的值来扫描字符值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38172598/

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