gpt4 book ai didi

c - 字符串无法像c程序一样将小写转换为大写

转载 作者:行者123 更新时间:2023-11-30 21:12:09 26 4
gpt4 key购买 nike

如何使用 toupper 转换字符串功能?这不起作用。

#include<stdio.h>
#include<string.h>
#include<ctype.h>

int main(){
char ch[20];
printf("\nEnter Your String :");
gets(ch);

int i=0;
for(i=0;ch[i] !='\0';i++)
{
putchar(toupper(ch[i]));
putchar(ch[i]);
}

return 0;
}

这个程序输出大写和小写,我只想大写输出。我无法捕获我的逻辑错误。请帮助我获得清晰的逻辑概念

最佳答案

我认为这会起作用

for(i=0;ch[i] !='\0';i++)
{
ch[i]=toupper(ch[i]);
}

//print the string with uppercase

关于c - 字符串无法像c程序一样将小写转换为大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12436675/

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