【优质解】字符串的大小写转换功能(多函数调用) 摘要:方法一:使用c语言头文件ctype.h库里的tolower函数把字符串大写转换成小写程序结构:自定义三个函数,一个输入字符串,一个处理字符串,一个输出处理之后的字符串,最后再主函数中调用这三个函数参考…… 题解列表 2024年07月25日 0 点赞 0 评论 175 浏览 评分:0.0
C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo…… 题解列表 2022年05月10日 0 点赞 0 评论 98 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路: 注意事项:读入用gets可以读入空格,cin遇到回车或者空格就结束了。 参考代码: ```cpp #include using namespace std; ch…… 题解列表 2021年02月04日 0 点赞 0 评论 162 浏览 评分:0.0
C语言训练-大、小写问题-题解(C++代码) 摘要:#### 原题链接:[大小写转换](https://blog.dotcpp.com/tijie/p1124/ "大小写转换") 解题思路: **1、ASCII表:** ![](/imag…… 题解列表 2019年07月20日 0 点赞 0 评论 401 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: 用一个函数 tolower() 这是让字母有大写转为小写,还有 #inclue 没了,当然不能用 scanf() 函数输入,用 gets() 函数输入 因为是按一下回车。 代码: …… 题解列表 2020年03月13日 0 点赞 0 评论 294 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i; char s[100]; gets(s); for(i=0;s[i]!='\0&…… 题解列表 2020年11月27日 0 点赞 0 评论 224 浏览 评分:0.0
题目 1124: C语言训练-大、小写问题 摘要:参考代码:#include<stdio.h> #include<string.h> #include<ctype.h> void toLow(char *str){ for(int…… 题解列表 2023年03月12日 0 点赞 0 评论 48 浏览 评分:0.0
编写题解 1124: C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[100]; …… 题解列表 2021年07月08日 0 点赞 0 评论 140 浏览 评分:0.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[1000]; int i,n; gets(s…… 题解列表 2018年07月27日 0 点赞 0 评论 447 浏览 评分:0.0
C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){char str[100];gets(st…… 题解列表 2018年04月15日 0 点赞 0 评论 622 浏览 评分:0.0