1204: 大小写转换
摘要:#include<bits/stdc++.h>
using namespace std;
int main(){
string s;
while(getline(cin,s……
大小写转换-题解(C语言代码)
摘要:```c
#include
#include
int main()
{
char ch;
ch=getchar();
while(ch!=EOF)
{
if(ch>=……
大小写转换-题解(C语言代码)
摘要:对于这类题目,主要明白如何将小写字母更换为大写子母,这里以C内容作为解析
在ASCII码在ASCII码中,小写字母的ASCII码分布在第97-122位,大写字母的ASCII码分布在65-90位,前后……
优质题解
大小写转换-题解(C语言代码)简单易懂
摘要:**解题思路:**
利用getchar或scanf循环读取字符串或字符,如果是小写字符则转化为大写字符,当输入读到换行符时输出读入的内容,输入以End of file为止。
**函数用法:**
……
Manchester-【大小写转换】
摘要:#### 解题思路:
小写字母ascii值减去与其对应的大写字母的ascii值等于32。
输入一个字符串。
循环遍历每一个字符,是小写字母则输出对应的大写字母。
……
大小写转换-题解(Python代码)
摘要:凑字数凑字数凑字数凑字数
```python
while True:
s=input()
if s=="End of file":
break
pr……
大小写转换-题解(C++代码)
摘要:```cpp
#include
#include
#include
using namespace std;
int main(){
char a[80];
whi……