[编程入门]有规律的数列求和 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int n; scanf("%d",&n);…… 题解列表 2019年11月23日 0 点赞 0 评论 920 浏览 评分:2.0
[编程入门]利润计算-题解(Python代码)python 摘要:```python a = float(input())#输入并且字符转换为浮点型(input返回的是一个字符串) if a>=0 and a…… 题解列表 2019年11月23日 0 点赞 0 评论 1791 浏览 评分:7.0
C语言训练-"水仙花数"问题1-题解(Python代码)python 摘要:```python num= int(input())#输入并且字符转换为浮点型(input返回的是一个字符串) g=int(num%10)#个位 s=int(num/10%10)#十位 …… 题解列表 2019年11月23日 0 点赞 0 评论 1408 浏览 评分:0.0
C语言训练-"水仙花数"问题2-题解(Python代码)python 摘要:```python def f(num):#定义函数 是数素返回1 不是返回0 g=int(num%10)#个位 s=int(num/10%10)#十位 b=int(n…… 题解列表 2019年11月23日 0 点赞 0 评论 1302 浏览 评分:6.0
蓝桥杯算法训练VIP-新生舞会-题解(C语言代码) 摘要: #include #include struct stu { char name[1002]; char num[1002]; char gender; }; in…… 题解列表 2019年11月23日 0 点赞 0 评论 1313 浏览 评分:9.9
二级C语言-阶乘数列 (C++代码) 摘要:```cpp #include #include #include using namespace std; double fbi(int x) { double s=1; for…… 题解列表 2019年11月23日 0 点赞 0 评论 1089 浏览 评分:0.0
蓝桥杯算法训练VIP-新生舞会-题解(C语言代码) 简单AC代码 值得参考 摘要:简单粗暴 #include #include struct stu { char name[1002]; char num[1002…… 题解列表 2019年11月23日 0 点赞 0 评论 870 浏览 评分:9.9
[编程入门]带参数宏定义练习 (C++代码) 摘要:```cpp #include #include #include using namespace std; #define swap(a,b) t=a;a=b;b=t; //重点是宏的使…… 题解列表 2019年11月23日 0 点赞 0 评论 1349 浏览 评分:9.9
二级C语言-等差数列 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int n ; scanf("%d",&n)…… 题解列表 2019年11月23日 0 点赞 0 评论 1310 浏览 评分:0.0
C语言训练-求矩阵的两对角线上的元素之和 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int n ;int sum=0;int a; …… 题解列表 2019年11月23日 0 点赞 0 评论 586 浏览 评分:0.0