gpt4 book ai didi

C 程序跳过 switch 语句中的部分函数。

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

<分区>

我编写的程序太长,无法复制到此站点。但需要的内容将粘贴到网站中。

这是 switch 语句:

    void enterName();

int adminChoice;
printf("\nEnter Numeric Choice: ");
scanf("%d", &adminChoice);

switch(adminChoice)
{
case(1):
{
enterName();
}
}

这是实际的功能:

void enterName()
{
FILE *fp = fopen("/home/matthew/Desktop/BBE.txt", "w");

if (fp == NULL)
{
printf("Error opening file!\n");
exit(1);
}
char comment[100];

printf("Enter, String\n");

fgets(comment, sizeof comment, stdin);
fputs(comment,fp);
}

程序会要求用户输入字符串。但是没有时间放入所需的字符串。它只是结束程序。

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