田博文


私信TA

用户名:dotcpp0709503

访问量:716

签 名:

2023级高一(4)班

等  级
排  名 10847
经  验 1062
参赛次数 0
文章发表 20
年  龄 15
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void count(char* str){
    int i;
    for(i=0;i<strlen(str);i++){
        if(str[i]>='A'&&str[i]<='Z')
        printf("%c",str[i]+32);
        else 
        printf("%c",str[i]);
    }
}
int main()
{
    char q[99];
    gets(q);
    char str[strlen(q)];
    strcpy(str,q);
    count(str);
}


 

0.0分

0 人评分

  评论区

  • «
  • »