链表实现 ( 可AC ) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<stdlib.h> int num = 0; typedef struct stu …… 题解列表 2018年07月28日 1 点赞 1 评论 340 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (简洁容易理解) 摘要:解题思路:设定一个数组,假设这个数组是一个圆形。注意事项:因为多设了一个数组作为缓存,所以最后的截断要注意。参考代码:#include<stdio.h>int main(){ int i, j,…… 题解列表 2018年07月28日 0 点赞 0 评论 888 浏览 评分:0.0
觉得大佬们写的好长呀 ( 可 AC ) (C语言代码) 摘要:解题思路: 用'.'分隔字符串,将字符串变为整数,判断是否处于0到255之间,如果处于,记录个数加一; 循环结束之后,判断符合ip条件的整数…… 题解列表 2018年07月28日 4 点赞 2 评论 490 浏览 评分:0.0
稍微运用下结构体数组 (可AC) 想挑战自己的来观看一波 (C语言代码) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> struct node { char str; int num; }Node[26]; i…… 题解列表 2018年07月28日 3 点赞 1 评论 716 浏览 评分: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 评论 824 浏览 评分:0.0
上车人数 (C语言代码) 摘要:解题思路:从第二站开始,就需要知道上车人数,由题目得知:第二站一定有人上下车,由于上一站上了a个人,那么第二站最多下车人数是a,由于第二站的下车人数与上车人数相等,那么第二站上车人数的范围应该在1到a…… 题解列表 2018年07月29日 2 点赞 0 评论 1084 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.9 (C语言代码) 摘要:解题思路:其他题解思路都不错,这里给大家提供一个简洁的代码供参考注意事项:参考代码:#include<stdio.h> int i,c,a; int count(int c) { int…… 题解列表 2018年07月29日 0 点赞 0 评论 1143 浏览 评分:0.0
可AC 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> int main() { int N, num[10], i, max; while (scanf("…… 题解列表 2018年07月29日 1 点赞 0 评论 880 浏览 评分:0.0
求大神来看看为什么通不过AC(通过一次)是差在哪里 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { string…… 题解列表 2018年07月29日 0 点赞 0 评论 1145 浏览 评分:0.0
可 AC (C语言代码) 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<string.h> int main() { int i; char str[10…… 题解列表 2018年07月29日 1 点赞 0 评论 768 浏览 评分:0.0