蓝桥杯算法提高VIP-大数加法 (C++代码) 摘要:#include "iostream" #include "algorithm" #include "string" using namespace std; string add(strin…… 题解列表 2018年07月28日 1 点赞 0 评论 1312 浏览 评分: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 评论 1292 浏览 评分:0.0
妹子杀手的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdlib.h>using namespace std;int main (){ int a,b; whil…… 题解列表 2018年07月28日 0 点赞 0 评论 1079 浏览 评分: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 评论 685 浏览 评分:0.0
链表实现 ( 可AC ) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<stdlib.h> int num = 0; typedef struct stu …… 题解列表 2018年07月28日 1 点赞 1 评论 366 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (简洁容易理解) 摘要:解题思路:设定一个数组,假设这个数组是一个圆形。注意事项:因为多设了一个数组作为缓存,所以最后的截断要注意。参考代码:#include<stdio.h>int main(){ int i, j,…… 题解列表 2018年07月28日 0 点赞 0 评论 1005 浏览 评分:0.0
觉得大佬们写的好长呀 ( 可 AC ) (C语言代码) 摘要:解题思路: 用'.'分隔字符串,将字符串变为整数,判断是否处于0到255之间,如果处于,记录个数加一; 循环结束之后,判断符合ip条件的整数…… 题解列表 2018年07月28日 4 点赞 2 评论 528 浏览 评分:0.0
稍微运用下结构体数组 (可AC) 想挑战自己的来观看一波 (C语言代码) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> struct node { char str; int num; }Node[26]; i…… 题解列表 2018年07月28日 3 点赞 1 评论 800 浏览 评分:0.0
小明A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int t; scanf("%d", &t); int a[t][2], b[t], i,…… 题解列表 2018年07月29日 0 点赞 0 评论 887 浏览 评分:0.0
上车人数 (C语言代码) 摘要:解题思路:从第二站开始,就需要知道上车人数,由题目得知:第二站一定有人上下车,由于上一站上了a个人,那么第二站最多下车人数是a,由于第二站的下车人数与上车人数相等,那么第二站上车人数的范围应该在1到a…… 题解列表 2018年07月29日 2 点赞 0 评论 1246 浏览 评分:0.0