C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ …… 题解列表 2017年12月17日 0 点赞 0 评论 705 浏览 评分:0.0
优质题解 WU-蓝桥杯算法提高VIP-卡勒沃夫之弱水路三千(提高型) (C++代码) 摘要:这个题目表面上是一个字符串排序问题 但处理起来有些复杂 因为题目只是告诉了 两两字符串之间的对应关系 所以本题的处理策略是 找出那个第一任女友 第一任女友有个特点就是她只出现在左边 找出第一任女…… 题解列表 2017年12月17日 8 点赞 1 评论 1705 浏览 评分:8.4
蓝桥杯历届试题-分糖果 (Java代码) 摘要:解题思路: 注意事项:QUWENHUI参考代码:import java.util.Scanner;public class Main{ // 分糖果; public static void main(…… 题解列表 2017年12月17日 2 点赞 0 评论 1507 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int isprime(…… 题解列表 2017年12月17日 0 点赞 0 评论 841 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ …… 题解列表 2017年12月17日 0 点赞 0 评论 657 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int letter=0,digit=0,space=0,others=0;void count(char str[]){int i;…… 题解列表 2017年12月17日 0 点赞 0 评论 816 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; while(scanf("%d%d",&n,&m)!=EOF){ int x[n],i; …… 题解列表 2017年12月17日 0 点赞 0 评论 656 浏览 评分:0.0
优质题解 Manchester-台球碰撞-(附带图解) 摘要:解题思路:把台球看做质点(台球坐标不变,球桌坐标各个边界向里收缩R,得到新的球桌);假设没边界,求出小球沿着直线的最后坐标x,y;x,y在球桌内,返回输出否则;判断小球与哪个边界相撞(判断方法有多中,…… 题解列表 2017年12月17日 75 点赞 10 评论 3972 浏览 评分:9.1
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:在定义阶乘、阶乘和的时候要用long long型,用int会溢出。参考代码:#include<stdio.h>long long jiecheng(int n);long long…… 题解列表 2017年12月17日 0 点赞 0 评论 829 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>float he(int a);float pingfanghe(int b);float daoshu…… 题解列表 2017年12月17日 0 点赞 0 评论 652 浏览 评分:0.0