统计字符个数-题解(C语言代码)满分题解!! 摘要:` #include #include #define N 10 int main() { int i,j,k,x; …… 题解列表 2019年12月10日 0 点赞 0 评论 1343 浏览 评分:9.0
Kanna-最大数问题--C 摘要: #include int main(){ int max , n; scanf("%d", &n); //如果第一个输入的值就是-1…… 题解列表 2019年12月10日 0 点赞 0 评论 1430 浏览 评分:8.0
C语言训练-斐波纳契数列-题解(C++代码) 摘要:递归数组求解 ```cpp #include using namespace std; int main() { int n_int; cin >> n_int; int…… 题解列表 2019年12月10日 0 点赞 0 评论 1178 浏览 评分:8.7
C语言训练-最大数问题-题解(C++代码) 摘要:存储最大值 然后利用三目对后面的数进行判断和储值 ```cpp #include using namespace std; int main() { int n_int; …… 题解列表 2019年12月10日 0 点赞 0 评论 1126 浏览 评分:0.0
C语言训练-求1+2!+3!+...+N!的和-题解(C++代码) 摘要:递归求阶乘 ```cpp #include using namespace std; long fact(int n_int) { if (n_int > 1) { …… 题解列表 2019年12月10日 0 点赞 0 评论 967 浏览 评分:5.0
C语言训练-求PI*-题解(C语言代码) 摘要:最后记得乘四 ```cpp #include using namespace std; int main() { double pi_double=0; int c_i …… 题解列表 2019年12月10日 0 点赞 0 评论 1165 浏览 评分:0.0
C语言训练-求函数值-题解(C++代码) 摘要:递归 ```cpp #include using namespace std; int fact(int x_int) { if (x_int == 1) { ret…… 题解列表 2019年12月10日 0 点赞 0 评论 890 浏览 评分:0.0
C语言训练-求素数问题-题解(C++代码) 摘要:循环寻找素数 ```cpp #include using namespace std; int main() { int n_int; cin >> n_int; int…… 题解列表 2019年12月10日 0 点赞 0 评论 813 浏览 评分:0.0
蓝桥杯2018年第九届真题-递增三元组-题解(C++代码) 摘要: 数据有问题 ```cpp #ifndef LOCAL #include #endif typedef long long LL; using namespace std; …… 题解列表 2019年12月10日 0 点赞 0 评论 1035 浏览 评分:6.0
C语言训练-百钱百鸡问题-题解(C++代码) 摘要:三层变量循环 遍历只数 判断是否符合 加在一起等于一百只 并且是否花掉100元 ```cpp #include using namespace std; int main…… 题解列表 2019年12月10日 0 点赞 0 评论 1201 浏览 评分:9.3