C语言训练-大、小写问题-题解(C++代码) 看这里!!!! 快来啊!!!!!!!简单易懂!!!!! 摘要: #include #include using namespace std; int main() { string word; getline(cin, word); …… 题解列表 2020年03月07日 0 点赞 0 评论 458 浏览 评分:6.0
1124: C语言训练-大、小写问题 摘要:#这个题有点意思,测试字符串里面有空格的话容易出错,还特意强调了回车表示结束,所以空格结束的情况也需要排除掉。 ```cpp #include #include #include using…… 题解列表 2023年02月23日 0 点赞 1 评论 30 浏览 评分:6.0
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 评论 770 浏览 评分:6.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:预计用fgets接受输入,假设用例来自标准输入端,读取一行长度不超过100的字符串,到'\n'为止:#include<stdio.h> #include<ctype.h> …… 题解列表 2018年07月24日 2 点赞 0 评论 1035 浏览 评分:7.3
。。哗哗哗。。:C语言训练-大、小写问题 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int k,i; char str[100]; gets(str); for…… 题解列表 2019年02月21日 1 点赞 2 评论 638 浏览 评分:8.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 评论 285 浏览 评分:8.0
getline读空格(12%看这里) 摘要:```cpp #include #include using namespace std; int main() { string a; getline(cin,a);//可以读空格…… 题解列表 2020年02月08日 0 点赞 4 评论 895 浏览 评分:8.0
优质题解 C语言训练-大、小写问题 摘要:解题思路:C标准中有一个一个头文件,这里面定义了一批C语言字符处理函数,用于测试字符是否属于特定的字符类别,如字母字符、控制字符、数字、等等 头文件: 函数: (1)int islower(in…… 题解列表 2022年01月18日 1 点赞 3 评论 3348 浏览 评分:8.0
JakeLin-题解1124:C语言训练-大、小写问题 (C++代码) 摘要:```cpp #include #include using namespace std; int main(){ char s[100]; gets(s); for(int i=…… 题解列表 2020年02月16日 0 点赞 2 评论 508 浏览 评分:8.0