C语言程序设计教程(第三版)课后习题10.4 (简洁容易理解) 摘要:解题思路:设定一个数组,假设这个数组是一个圆形。注意事项:因为多设了一个数组作为缓存,所以最后的截断要注意。参考代码:#include<stdio.h>int main(){ int i, j,…… 题解列表 2018年07月28日 0 点赞 0 评论 1143 浏览 评分:0.0
可 ( AC ) (C语言代码) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<math.h> int main() { int n, i, j; while (…… 题解列表 2018年07月28日 4 点赞 3 评论 776 浏览 评分:9.9
链表实现 ( 可AC ) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<stdlib.h> int num = 0; typedef struct stu …… 题解列表 2018年07月28日 1 点赞 1 评论 412 浏览 评分:0.0
汽水瓶 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<iostream>int fin(int k){ int y; y = k / 2; …… 题解列表 2018年07月28日 0 点赞 0 评论 850 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdlib.h>using namespace std;int main (){ int a,b; whil…… 题解列表 2018年07月28日 0 点赞 0 评论 1289 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int prime(int n, int i, int c) { if (n > 1 && n == (int)n) {…… 题解列表 2018年07月28日 0 点赞 0 评论 1557 浏览 评分:0.0
蓝桥杯算法提高VIP-现代诗如蚯蚓 (C++代码) 摘要:#include "iostream" #include "algorithm" #include "string" using namespace std; int a[1001]; in…… 题解列表 2018年07月28日 0 点赞 0 评论 2240 浏览 评分:6.0
蓝桥杯算法提高VIP-大数加法 (C++代码) 摘要:#include "iostream" #include "algorithm" #include "string" using namespace std; string add(strin…… 题解列表 2018年07月28日 1 点赞 0 评论 1626 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C++代码) 摘要:解题思路:注意事项:保留小数点后5位要用到setprecision函数命令参考代码:#include<iostream>#include<iomanip>using namespace std;dou…… 题解列表 2018年07月28日 0 点赞 0 评论 1336 浏览 评分:0.0
此解可AC (你绝对想象不到的全新方法) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> int main() { int N, i, j, k, t, a, b; scanf("%d",…… 题解列表 2018年07月28日 14 点赞 6 评论 711 浏览 评分:7.3