题解列表

筛选

缩位求和C++非递归写法

摘要:解题思路:思路很简单,难点就是要读懂题和清楚字符串与数字相互转换的语法。1 接收字符串S。2 建立循环,循环内容是: 1 将字符串的每一个值都转换为数字并相加得到sum。2 sum转换为新的字符串S。……

排列序数(c++)超短

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<cstring>using namespace std;int main(){……

1012: [编程入门]字符串分类统计

摘要:```cpp #include #include #include using namespace std; /* 题目描述 编写一函数,由实参传来一个字符串,统计此字符串中字母、数……

1196: 去掉空格

摘要:#这个代码是适配一次性输入的代码,对于dev或者vs等运行环境一行一行输入的话可能会出现输入一次转换一次的问题,稍微改进即可。 ```cpp #include #include #includ……

1042: [编程入门]电报加密

摘要:#此题和上一题类似,也需要接收空格,同时还需要进行字母加密,难度稍高。 ```cpp #include #include #include using namespace std; /……

 编写题解 2788: 晶晶赴约会

摘要:解题思路:用if语句借此题注意事项:只是1,3,5输出No,6,7也输出yes参考代码:#include<iostream>using namespace std;int main(){    int……

简单点有规律的数列求和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float n=2.0,z=1.0;    float s=0;    int N;    scanf("……