C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,a[20],n=0,count=0; double…… 题解列表 2017年12月18日 0 点赞 0 评论 787 浏览 评分: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 评论 819 浏览 评分:0.0
C二级辅导-统计字符 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, space ,number ,character , other; space = nu…… 题解列表 2017年12月18日 0 点赞 0 评论 837 浏览 评分: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 评论 772 浏览 评分:0.0
蛇行矩阵 (C语言代码) 简单野蛮算法不找规律,一个原始数组搞定 摘要:解题思路:它要输出的恰好是1,2,3,4。。。 这样递增的数字所以我们可以按着这些数字顺序逐个写入数组里面下面开始演示注意事项:为了节省时间可以适当break;参考代码:#include<stdio.…… 题解列表 2017年12月19日 1 点赞 0 评论 1204 浏览 评分: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 评论 981 浏览 评分:0.0
开心的金明 (C语言代码) 摘要:解题思路:01背包,价值加个乘法而己注意事项:参考代码:#include<stdio.h>#include<string.h>int max(long int a,long int b){ re…… 题解列表 2017年12月19日 0 点赞 2 评论 733 浏览 评分:0.0
我美吗! 摘要:注意事项:参考代码:#include <stdio.h> int main() { int n,a[10],max,i; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年12月19日 2 点赞 0 评论 815 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#define N 100int main(){int a,b;printf("please input 2 numbers:\n")…… 题解列表 2017年12月19日 0 点赞 0 评论 584 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n,a[100],i,other=0,j,num; scanf("%d",&n); …… 题解列表 2017年12月19日 0 点赞 0 评论 628 浏览 评分:0.0