大小写转换(C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多……
大小写转换(乐,误会了“输入以“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)) ……
我写比较简单getline(cin,s)运用一下就行了!1204: 大小写转换
摘要:##1204: 大小写转换
####一如既往的秒杀题,就是这个优质题解到底怎么申请啊!我想要优质题解:tw-1f367:
```cpp
#include
using namespace std……
1204: 大小写转换
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
int main()
{
char str[85] = {0};
……