[编程入门]利润计算-题解(Python代码)python 摘要:```python a = float(input())#输入并且字符转换为浮点型(input返回的是一个字符串) if a>=0 and a…… 题解列表 2019年11月23日 0 点赞 0 评论 1915 浏览 评分:7.0
蓝桥杯算法提高VIP-计算质因子满分题解!!! 摘要:####注意因数是否为质数的判断 #####参考代码: #include #include int judge(int n) { if(n==…… 题解列表 2019年12月05日 0 点赞 0 评论 894 浏览 评分:7.0
川哥的吩咐-题解(C++代码) 摘要:```cpp #include #include using namespace std; void bigAddAndPrint(string a,string b) { i…… 题解列表 2019年12月05日 0 点赞 1 评论 1379 浏览 评分:7.0
C语言训练-尼科彻斯定理-题解(Python代码) 摘要:**代码如下:** x=int(input()) m=x**3 k=x//2 t=str(x)+"*"+str(x)+"*"+str(x)+"="+str(…… 题解列表 2019年12月07日 0 点赞 0 评论 2043 浏览 评分:7.0
蓝桥杯基础练习-特殊回文数-满分题解!! 摘要:####运行正确 但是过不了 #####参考代码: #include int huiwen(int n) { int nn=n,ans=0; w…… 题解列表 2019年12月10日 0 点赞 1 评论 2165 浏览 评分:7.0
弟弟的作业-题解(C语言代码) 摘要:主要理解题意: #include #include int main() { int a,b,i=0,num=0,c; char d,f; while(~scan…… 题解列表 2019年12月10日 0 点赞 1 评论 813 浏览 评分:7.0
不容易系列-题解(C++代码)公差为2的等差数列 摘要:其实题目很简单,本质上就是求等差数列的某一项 通项公式为:An=A1+(n-1)*d ```cpp #include using namespace std; int main() { …… 题解列表 2019年12月12日 0 点赞 0 评论 1226 浏览 评分:7.0
蓝桥杯基础练习-数列排序-题解(C语言代码)自定义排序函数 摘要:## 自定义排序函数,循环输出 ```c #include int cmp(const void *a,const void *b){//自定义函数 return *(int*)a - *…… 题解列表 2019年12月22日 0 点赞 0 评论 1131 浏览 评分:7.0
[编程入门]选择排序-题解(C语言代码) 摘要:#include int main() { int a[10],i,j,k,t; for(i=0;i…… 题解列表 2019年12月26日 0 点赞 0 评论 2441 浏览 评分:7.0
二级C语言-温度转换-题解(C语言代码) 摘要: ```c #include #include int main(){ double cotf(int i); int i; for(i=-100;i…… 题解列表 2020年01月08日 0 点赞 0 评论 864 浏览 评分:7.0