1204: 大小写转换
摘要:核心: name = 'Hello World' print(name.lower()) # 大写转小写 print(name.upper()) # 小写转大写 ……
java--study||O.o
摘要:参考代码:import java.util.Scanner;
public class Main
{ public static void main(String[] args)
……
大小写转换(C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多……
c++范围for简单解法
摘要:解题思路:注意事项:参考代码:#include<iostream> #include<sstream>#include<iomanip>using namespace std;int main(){ ……
大小写转换(乐,误会了“输入以“End of file”结束。”这句话,还以为输出这个字符串停止输入)
摘要:参考代码:
```c
#include
#include
int main()
{
char a[80]={'\0'};
while(~scanf("%s",a))
{
……
大小写转换(c语言代码)
摘要:```c
#include
#include
void toUp(char* strs);
int main()
{
char strs[81] = { 0 };
while……
编写题解 1204: 大小写转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int i=0,l; while(gets(a)) ……
1204: 大小写转换
摘要:放心,题目的End of file其实没什么用,可以不处理
```cpp
#include
#include
using namespace std;
int main()
{
……
我写比较简单getline(cin,s)运用一下就行了!1204: 大小写转换
摘要:##1204: 大小写转换
####一如既往的秒杀题,就是这个优质题解到底怎么申请啊!我想要优质题解:tw-1f367:
```cpp
#include
using namespace std……