哥德巴赫曾猜测 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,a,b,c,n,count=0,flag1,flag2; scanf("%d",&n); if(n%2=…… 题解列表 2018年02月28日 0 点赞 0 评论 874 浏览 评分:0.0
简单的事情 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,n,m; float s,s1,s2; while(scanf("%d%d",&n,&m)!=EOF) …… 题解列表 2018年02月28日 0 点赞 0 评论 559 浏览 评分:0.0
十->二进制转换 (C语言代码) 摘要:解题思路:运用递归的思路。注意事项:参考代码:#include<stdio.h>#include<math.h>void binary(int);int main(void){ int n; whil…… 题解列表 2018年02月28日 0 点赞 0 评论 1657 浏览 评分:0.0
蓝桥杯历届试题-核桃的数量 (C语言代码) 摘要:解题思路: 求a1,a2,...,an的最小公倍数,可以求a1,a2的最小公倍数b1,再求b1,a3的最小公倍数b2,...,直到求出b(n-2),an的最小公倍数b(n-1),则b(n-1)是…… 题解列表 2018年02月28日 0 点赞 0 评论 1103 浏览 评分:0.0
花落的新手代码(C) 摘要:解题思路:注意事项:参考代码#include<stdio.h> #include<stdlib.h> #include<ctype.h> #include<string.h> #define …… 题解列表 2018年02月28日 0 点赞 0 评论 1295 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)指针自增得注意 摘要:#include <stdio.h>#include <ctype.h>void calculate(int *,int *,int *,int *);void main(void){ int …… 题解列表 2018年02月28日 0 点赞 0 评论 819 浏览 评分:0.0
蓝桥杯算法提高VIP-格子位置 (Java代码) 摘要: import java.util.Scanner; public class Main { /** * @BoyHonest */ public static v…… 题解列表 2018年02月28日 0 点赞 0 评论 939 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[30],num; scanf("%s",a); num=strlen(a); while(num)…… 题解列表 2018年02月28日 0 点赞 0 评论 775 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d",a+b)…… 题解列表 2018年02月28日 0 点赞 0 评论 641 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("******************************\n"); prin…… 题解列表 2018年02月28日 0 点赞 0 评论 496 浏览 评分:0.0