C二级辅导-公约公倍 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,m,n,f; cin>>m>>n; for(i=n;i>0…… 题解列表 2018年02月09日 0 点赞 0 评论 651 浏览 评分:0.0
C二级辅导-统计字符 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>using namespace std;int main(){ char a; int q,w,e,r…… 题解列表 2018年02月09日 2 点赞 0 评论 1227 浏览 评分:0.0
C二级辅导-阶乘数列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double m=0,j,c; in…… 题解列表 2018年02月09日 0 点赞 0 评论 731 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int a[10],i,mini=0; …… 题解列表 2018年02月09日 0 点赞 0 评论 749 浏览 评分:0.0
明明的随机数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[101];int n,sum;void swap(int *a,int *b){ int t; t=*a;*a=*b;*b=…… 题解列表 2018年02月09日 0 点赞 0 评论 1062 浏览 评分:0.0
开心的金明 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int v[30],p[30];long long x[30001];int main(){ int n,m,i,j,k; scanf(…… 题解列表 2018年02月09日 0 点赞 0 评论 1089 浏览 评分:0.0
【夏禾】题解1016:C语言程序设计教程(第三版)课后习题6.6 摘要:解题思路:遍历100 -> 999 的每个数 , 取出其中符合要求的数。包括对每个数 各个位的提取。(百位,十位 ,个位)。:D注意事项:会使用for循环 , 对编程语言中 整除 和 取余有一定初步…… 题解列表 2018年02月09日 1 点赞 0 评论 1110 浏览 评分:0.0
蓝桥杯算法训练VIP-阶乘 (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int n,i; int j=1; scanf("%d",&n); for(i=2;i<=n;i++) { …… 题解列表 2018年02月09日 1 点赞 0 评论 1003 浏览 评分:0.0
纪念品分组 (C语言代码) 摘要:解题思路:手写快排+贪心注意事项:参考代码:#include<stdio.h>int b[30001];void quiksort(int a[],int low,int high){ int …… 题解列表 2018年02月09日 0 点赞 0 评论 955 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,sum;int a[21],b[21];void dfs(int k){ int i,j,l,p; if(k>n) { s…… 题解列表 2018年02月09日 0 点赞 0 评论 577 浏览 评分:0.0