C语言训练-大、小写问题-题解(C语言代码) 摘要:## ASCII码中大写字母比小写字母小32,先判断字符是不是大写字母,是:字符=字符+32,不是:判断下一个字符,直到判断到字符串末尾'\0'结束 ```c #include #incl…… 题解列表 2020年03月06日 0 点赞 0 评论 547 浏览 评分:9.9
C语言训练-大、小写问题-题解(C++代码) 看这里!!!! 快来啊!!!!!!!简单易懂!!!!! 摘要: #include #include using namespace std; int main() { string word; getline(cin, word); …… 题解列表 2020年03月07日 0 点赞 0 评论 457 浏览 评分:6.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: 用一个函数 tolower() 这是让字母有大写转为小写,还有 #inclue 没了,当然不能用 scanf() 函数输入,用 gets() 函数输入 因为是按一下回车。 代码: …… 题解列表 2020年03月13日 0 点赞 0 评论 294 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:```c #include void Conversion(char* str) { while (*str) { if (*str >= 'A' && *str …… 题解列表 2020年03月30日 0 点赞 0 评论 246 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: #include #include int main() { char a[100]; gets(a); f…… 题解列表 2020年04月03日 0 点赞 0 评论 229 浏览 评分:0.0
C语言训练-大、小写问题-题解(Python代码) 摘要:```python s=input() for i in s: if i.isupper(): print(chr(ord(i)+32),end='') el…… 题解列表 2020年04月07日 0 点赞 0 评论 306 浏览 评分:0.0
[C语言训练ctype.h中的int tolower(int c)大写字符转换为小写字符 摘要:```c #include #include int main() { int c; while((c=getchar())!=EOF){ putchar…… 题解列表 2020年04月16日 0 点赞 0 评论 284 浏览 评分:8.0
C语言训练-大、小写问题-题解(C++代码) String 摘要:#include #include #include using namespace std; int main() { string s; getline…… 题解列表 2020年04月22日 0 点赞 0 评论 336 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:```c // // Created by sairo on 2020/5/3. // #include #include #include int main(void) { …… 题解列表 2020年05月03日 0 点赞 0 评论 305 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: # 人家的测试数据是放文件里的,而你是从键盘直接输的,切记别把判断EOF换成‘\n’了 ```c #include int main() { char ch; while(1)…… 题解列表 2020年05月06日 0 点赞 0 评论 389 浏览 评分:0.0