题解列表
编写题解 2788: 晶晶赴约会
摘要:解题思路:用if语句借此题注意事项:只是1,3,5输出No,6,7也输出yes参考代码:#include<iostream>using namespace std;int main(){ int……
2839: 石头剪刀布(Python)
摘要:解题思路:注意事项:参考代码:N,NA,NB = map(int,input().split())
la = list(map(int,input().split()))
lb = list(ma……
1042: [编程入门]电报加密
摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。
```cpp
#include
#include
#include
using namespace std;
/……
1196: 去掉空格
摘要:#这个代码是适配一次性输入的代码,对于dev或者vs等运行环境一行一行输入的话可能会出现输入一次转换一次的问题,稍微改进即可。
```cpp
#include
#include
#includ……
1124: C语言训练-大、小写问题
摘要:#这个题有点意思,测试字符串里面有空格的话容易出错,还特意强调了回车表示结束,所以空格结束的情况也需要排除掉。
```cpp
#include
#include
#include
using……
031: [编程入门]自定义函数之字符串反转
摘要:```cpp
#include
#include
#include
using namespace std;
// 写一函数,使输入的一个字符串按反序存放,
// 在主函数中输入并输出反序……
1012: [编程入门]字符串分类统计
摘要:```cpp
#include
#include
#include
using namespace std;
/* 题目描述
编写一函数,由实参传来一个字符串,统计此字符串中字母、数……
C语言 破解简单密码 算法简单
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>void fun(char s[]){ int i; ……