题解列表
蓝桥杯2014年第五届真题-拼接平方数 (C++代码)简单通解
摘要:解题思路:注意事项:参考代码://1.先求所有平方数,缩小范围//2.只能拆分成左边数字和右边数字,通过求商和求余获得#include<iostream>#include<cmath……
1156: C语言训练-阿姆斯特朗数--讲好两个空格的呢?
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int j,sum; for (int i ……
迭代法求平方根 自定义函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>double a[100];double h(double a[],double n){ int ……
1728: 字符串的查找删除 来看看吧 万一看懂了呢
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
void f(string……
: 二级C语言-分段函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double h(double x){ if(x<……