大小写转换-题解(C语言代码) 摘要:```c #include #include int main() { char str[100]; int i; while(scanf("%s",str)!=EOF) …… 题解列表 2020年03月04日 0 点赞 0 评论 384 浏览 评分:0.0
大小写转换-题解(C/C++代码)(简单版) 摘要:#### 解题思路: 该题主要用到了toupper函数 transform(s.begin(),s.end(),s.begin(),::toupper);//小写变成大写 transform…… 题解列表 2020年02月10日 0 点赞 0 评论 1183 浏览 评分:9.9
大小写转换 (Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年01月14日 0 点赞 0 评论 697 浏览 评分:0.0
大小写转换-题解(C语言代码)值得推荐 摘要: #include #include int main() { char x[500]; int i,j,k; while(ge…… 题解列表 2019年12月01日 0 点赞 0 评论 876 浏览 评分:7.3
大小写转换-题解(C语言代码) 摘要: ```c #include #include #include int main(int argc, const char *argv[]) { int i, n…… 题解列表 2019年11月21日 0 点赞 0 评论 467 浏览 评分:0.0
优质题解 大小写转换-题解(C++代码)string+transform方法 摘要:C++ stl函数库提供了很多的方法函数 这个题目是讲小写字母转换为大写字母 直接用string + transform 就可以直接完成 ```cpp string s; tra…… 题解列表 2019年06月21日 0 点赞 0 评论 2881 浏览 评分:9.9
ASCII码和toupper函数的结合 摘要:解题思路:用strlen求出本次输入的数组长度再根据ASCII码对应的小写字母范围用toupper函数调整注意事项:函数原型:extern int toupper(int c);在ctype.h文件中…… 题解列表 2019年06月02日 0 点赞 0 评论 618 浏览 评分:9.9
大小写转换 (C语言代码) 摘要:解题思路:简单写写,参考assic表注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[150]; int l,i; whi…… 题解列表 2019年04月23日 0 点赞 0 评论 483 浏览 评分: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 评论 401 浏览 评分:0.0
大小写转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<cmath> #include<algorithm> using nam…… 题解列表 2019年04月04日 0 点赞 0 评论 799 浏览 评分:0.0