大小写转换 (C++代码)水一发 摘要:水起来参考代码:#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getl…… 题解列表 2018年12月25日 0 点赞 0 评论 804 浏览 评分:0.0
大小写转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<cmath> #include<algorithm> using nam…… 题解列表 2019年04月04日 0 点赞 0 评论 907 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int k,i; while(scanf("%s"…… 题解列表 2019年04月22日 0 点赞 0 评论 484 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:简单写写,参考assic表注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[150]; int l,i; whi…… 题解列表 2019年04月23日 0 点赞 0 评论 548 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要: ```c #include #include #include int main(int argc, const char *argv[]) { int i, n…… 题解列表 2019年11月21日 0 点赞 0 评论 697 浏览 评分:0.0
题解 大小写转换 简单易懂 摘要:解题思路: 1.利用while函数输入字符串s 2.当输入的字符串为 End of file 跳出循环 3.用islower函数用于判断字符是否为小写字母(a-z) 4.int toupper…… 题解列表 2022年04月24日 0 点赞 0 评论 244 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要:```c #include #include int main() { char str[100]; int i; while(scanf("%s",str)!=EOF) …… 题解列表 2020年03月04日 0 点赞 0 评论 516 浏览 评分:0.0
大小写转换-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ char a[80]; whi…… 题解列表 2020年03月20日 0 点赞 0 评论 591 浏览 评分:0.0
大小写转换 摘要:解题思路:18:45:48注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100];int i,n;while(scan…… 题解列表 2021年12月25日 0 点赞 0 评论 178 浏览 评分:0.0
1204: 大小写转换 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s…… 题解列表 2021年12月27日 0 点赞 0 评论 167 浏览 评分:0.0