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