题解列表

筛选

真就暴力杯???

摘要:/*先用深搜找出所有的1~9数字排列组合,对每一次排列组合结果划分为三个数字 例如第一次深搜结果为123456789,对其第一次划分1  2  3456789 计算1+2/3456789结果 第……

数字的处理与判断

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int a,c=0,d=0; i……

C语言训练-"水仙花数"问题

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

1219: 数列排序

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cmath> using namespace std; int n……

while循环解法

摘要:解题思路:相对于递归来讲我们要进行函数的跳转,所以我想用while循环进行解题(萌新初试,大佬勿喷)注意事项:参考代码:    #include<iostream>using namespace st……

1091:A+B for Input-Output Practice (VII)

摘要:解题思路:注意事项:这题就是在计算a+b的基础上添加一空行就行了。参考代码:#include<iostream>using namespace std;int main(){    int a,b; ……