C语言训练-大、小写问题 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { char a[110]; gets(a);/…… 题解列表 2019年11月23日 0 点赞 0 评论 450 浏览 评分:6.0
1124: C语言训练-大、小写问题 摘要:注意事项:看代码!!!参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; gets(s); int l…… 题解列表 2021年10月12日 0 点赞 0 评论 768 浏览 评分:6.0
C语言训练-大、小写问题-题解(C++代码) 看这里!!!! 快来啊!!!!!!!简单易懂!!!!! 摘要: #include #include using namespace std; int main() { string word; getline(cin, word); …… 题解列表 2020年03月07日 0 点赞 0 评论 457 浏览 评分:6.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; gets(a); int s =…… 题解列表 2018年03月13日 1 点赞 0 评论 791 浏览 评分:0.0
[编程入门]大、小写问题-题解(C语言代码) 摘要:解题思路:获取大小,判断ascii码,如果是大写字母就加32注意事项:无参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100];…… 题解列表 2021年08月14日 0 点赞 0 评论 140 浏览 评分: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语言代码) 摘要:一开始时用了scanf然后就犯了错误。 ```c # include # include int main(void) { char a[100]; int lenth, i…… 题解列表 2020年07月07日 0 点赞 0 评论 179 浏览 评分:0.0
干净的解法 摘要:解题思路:python中有转换大小写的函数:upper()----所有字母大写;lower()----所有字母小写 注意事项:参考代码:st=input() …… 题解列表 2021年04月10日 0 点赞 0 评论 170 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码)-c语言解法 摘要:### 解题思路 利用scanf的特性`scanf("%[^\n]",a);`可以表示遇到回车符的时间中止,参考正则 如果你忘记了A和a差距了多少,那么你可以使用你判断的值-'…… 题解列表 2020年11月30日 0 点赞 0 评论 294 浏览 评分:0.0
C语言训练-大、小写问题 (C++代码) 摘要:解题思路:简单的大小写转换注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char str[120]; …… 题解列表 2019年04月21日 0 点赞 0 评论 411 浏览 评分:0.0