gpt4 book ai didi

C语言 :scanning of input string is skipped inside for loop

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

<分区>

每次执行代码时,for循环内的内容都不是第一次执行,即i=0时。但是循环在 i=0 之后执行,即 i=1,2,3,..n-1。谁能解释这里出了什么问题?

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
char string[30][100];
int n,i;
scanf("%d",&n);
for(i=0;i<n;i++){
gets(string[i]);
printf("%s\n",string[i]);
}
getch();
return (EXIT_SUCCESS);
}

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