gpt4 book ai didi

c - 读取整个输入而不是单行

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

<分区>

我编写了从小写字母变为大写字母的程序。问题是,我不知道如何让它读取整个文本而不是一行。程序在按 Enter 后返回输出,我希望它在 CTRL+Z 后返回输出。

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


void makeUpper(char *s) {
int i;
for(i = 0; s[i] != '\0'; i++){
s[i] = toupper(s[i]);
}
printf("%s", s);
}


int main() {
char string[1000];

fgets(string, 1000, stdin);

makeUpper(string);
return 0;
}

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