C二级辅导-等差数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,temp=2,sum=0,n; scanf("%d…… 题解列表 2017年12月18日 0 点赞 0 评论 1026 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i; for(i=10;i<=1000;i++) …… 题解列表 2017年12月18日 0 点赞 0 评论 676 浏览 评分:0.0
C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,a[20],n=0,count=0; double…… 题解列表 2017年12月18日 0 点赞 0 评论 798 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int m,n,r=1,max,min,k,h,i; scan…… 题解列表 2017年12月18日 0 点赞 0 评论 842 浏览 评分:0.0
恺撒密码 (C语言代码) 摘要:参考代码:(没优化)#include <stdio.h> #include <string.h> int main() { int t1='V'-'A',…… 题解列表 2017年12月18日 3 点赞 0 评论 1444 浏览 评分:9.9
C二级辅导-统计字符 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, space ,number ,character , other; space = nu…… 题解列表 2017年12月18日 0 点赞 0 评论 862 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,x; double j=1,sum=0; for(i=1;i<=30;i++) …… 题解列表 2017年12月18日 0 点赞 0 评论 779 浏览 评分:0.0
Manchester-求素数问题 摘要:解题思路:判断素数,除1 和 它本身外,有因子,则不是素数;注意事项:1既不是素数,也不是合数参考代码:#include <stdio.h> void out_put( int i ); …… 题解列表 2017年12月19日 22 点赞 0 评论 1682 浏览 评分:9.0
蛇行矩阵 (C语言代码) 简单野蛮算法不找规律,一个原始数组搞定 摘要:解题思路:它要输出的恰好是1,2,3,4。。。 这样递增的数字所以我们可以按着这些数字顺序逐个写入数组里面下面开始演示注意事项:为了节省时间可以适当break;参考代码:#include<stdio.…… 题解列表 2017年12月19日 1 点赞 0 评论 1228 浏览 评分:0.0
蓝桥杯基础练习VIP-高精度加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int r, i, j, k; int a[100]…… 题解列表 2017年12月19日 0 点赞 0 评论 997 浏览 评分:0.0