提刀只为她


私信TA

用户名:dotcpp0599710

访问量:1004

签 名:

等  级
排  名 7228
经  验 1335
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 中南大学
专  业

  自我简介:

TA的其他文章

解题思路:库函数<ctype.h>的使用

注意事项:

参考代码:

#include <stdio.h>

#include <ctype.h>

#include <string.h>

void change(char* p)

{

char* s = p;

for (int i = 0; i < strlen(s); i++)

{

if (islower(*p))

*p = toupper(*p);

else

*p = tolower(*p);

p++;

}

puts(s);

}


int main(void)

{

char ch[21];

gets(ch);

change(ch);

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »