数字整除 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,k,r; int a[10000]; char s[1000…… 题解列表 2018年02月08日 0 点赞 0 评论 1516 浏览 评分:0.0
弟弟的作业 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char s[100];int count ;int main(){ int i,j,k,sum; …… 题解列表 2018年02月08日 0 点赞 0 评论 1293 浏览 评分:0.0
蓝桥杯算法提高VIP-大数加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int s[2000],aa[1001],bb[1001];char a[1001],b[1001]…… 题解列表 2018年02月08日 0 点赞 0 评论 1759 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:我是大一新生,还没有学数组,用简单粗暴的方法解决。注意事项:参考代码:#include <stdio.h> int main(){ …… 题解列表 2018年02月08日 1 点赞 0 评论 1127 浏览 评分:0.0
蓝桥杯基础练习VIP-龟兔赛跑预测 (C语言代码) 摘要:解题思路:如码注意事项:参考代码:#include<stdio.h>int main(){ int vt,vg,t,s,l; int i,j,k,sum; int mt,mg; scanf("%d%d…… 题解列表 2018年02月08日 0 点赞 0 评论 1711 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:#include<stdio.h>#include<string.h>char s[200000],c,max[200000],p[200000];int main(){ int i=0,j,len=…… 题解列表 2018年02月08日 0 点赞 0 评论 1097 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:不改变原数组,只是换序输出。可列出公式:arr[i] = arr[i-m], (i>=m && i < n)arr[i] = arr[n+i-m], (i>=0 && i<m)注意事项:下标…… 题解列表 2018年02月08日 0 点赞 0 评论 1176 浏览 评分:0.0
C语言训练-计算一个整数N的阶乘 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,N; long long s=1; while(scanf("%d",&N)!=EOF) { …… 题解列表 2018年02月07日 0 点赞 0 评论 1385 浏览 评分:0.0
数列问题 (C语言代码) 摘要:#include <stdio.h>int main(){ int N,a=3,b=4,c=5,i=1; long long an=3; do { sca…… 题解列表 2018年02月07日 0 点赞 0 评论 1413 浏览 评分:0.0
蓝桥杯算法提高VIP-数字黑洞 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int p(int n);int main(){ int i,n; scanf("%d",&n); if…… 题解列表 2018年02月07日 1 点赞 0 评论 1533 浏览 评分:0.0