人见人爱A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int a, b, c, d, e, f, i, n; scanf("%d", &n); for (i…… 题解列表 2017年12月01日 0 点赞 0 评论 1081 浏览 评分:2.0
素数回文 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ long i, j, k, l, a, b, m, flag, count, count1; int …… 题解列表 2017年12月01日 1 点赞 0 评论 1144 浏览 评分:2.0
母牛生小牛 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a1,a2,a3,a4,year,i,t; scanf("%d",&n); a1=1; a2=0; …… 题解列表 2017年12月03日 1 点赞 0 评论 2022 浏览 评分:2.0
数字整除 (C语言代码) 摘要:解题思路:根据题目要求来写就行了(我写的具体要求可能和题目的有点偏差)注意事项:参考代码:#include <stdio.h>void main(){ int n; //输入的数 i…… 题解列表 2017年12月03日 0 点赞 2 评论 589 浏览 评分:2.0
WU-Sine之舞 (C++代码)(蓝桥杯历年真题解析 一天一题)(唯一题解!!!) 摘要:这题做了很久 用的是递归的方法 递归大法好 写起来思路比较清晰 但也比较麻烦 废话不多说 上代码:#include<iostream> #include<cstring> #include…… 题解列表 2017年12月05日 4 点赞 5 评论 1000 浏览 评分:2.0
WU-C语言程序设计教程(第三版)课后习题8.9 (C语言代码) 摘要:#include<stdio.h> void count(char *p,int *a,int *b,int *c,int *d) { int i; for(i=0;p[i]!='…… 题解列表 2017年12月06日 3 点赞 0 评论 1224 浏览 评分:2.0
输出正反三角形 (C语言代码) 摘要:#include<stdio.h> int main() { int i,j,k; int n,m; scanf("%d%d",&n,&m); for(i=1;i<=n;…… 题解列表 2017年12月09日 1 点赞 0 评论 1442 浏览 评分:2.0
内部收益率 (C语言代码) 摘要:解题思路:就老老实实照着上面写的公式算。试出来的。-1到正无穷。注意事项:double,最好不要用=号,用约等于就行。参考代码:#include<stdio.h>#include<math.h>int…… 题解列表 2017年12月09日 0 点赞 0 评论 1813 浏览 评分:2.0
链表数据求和操作 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { int a[10],b[10]; int i; int sum1=0,sum…… 题解列表 2017年12月09日 0 点赞 0 评论 1228 浏览 评分:2.0
A+B problem (C语言代码) 摘要:#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d",a+b); return 0;…… 题解列表 2017年12月09日 0 点赞 0 评论 2298 浏览 评分:2.0