题解 大小写转换 简单易懂 摘要:解题思路: 1.利用while函数输入字符串s 2.当输入的字符串为 End of file 跳出循环 3.用islower函数用于判断字符是否为小写字母(a-z) 4.int toupper…… 题解列表 2022年04月24日 0 点赞 0 评论 185 浏览 评分:0.0
大小写转换 (Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年01月14日 0 点赞 0 评论 697 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){ char a[80]; …… 题解列表 2024年11月21日 0 点赞 0 评论 101 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要:```c #include #include int main() { char str[100]; int i; while(scanf("%s",str)!=EOF) …… 题解列表 2020年03月04日 0 点赞 0 评论 384 浏览 评分:0.0
1204: 大小写转换 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin,s…… 题解列表 2021年12月27日 0 点赞 0 评论 125 浏览 评分:0.0
大小写转换-题解(C语言代码) 摘要: ```c #include #include #include int main(int argc, const char *argv[]) { int i, n…… 题解列表 2019年11月21日 0 点赞 0 评论 467 浏览 评分:0.0
大小写转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[50]; while(gets(a)) { …… 题解列表 2022年12月22日 0 点赞 0 评论 59 浏览 评分:0.0
最基本的思路这道题 摘要:解题思路:利用不断输入想到while,然后利用字符数组将小写字母-32变成大写字母;注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2022年12月23日 0 点赞 0 评论 65 浏览 评分:0.0
大小写转换(乐,误会了“输入以“End of file”结束。”这句话,还以为输出这个字符串停止输入) 摘要:参考代码: ```c #include #include int main() { char a[80]={'\0'}; while(~scanf("%s",a)) { …… 题解列表 2023年09月22日 0 点赞 0 评论 84 浏览 评分:0.0
大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 0 点赞 1 评论 720 浏览 评分:4.3