三位数分解 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x, gewei, shiwei, baiwei; cin >…… 题解列表 2018年11月23日 0 点赞 0 评论 824 浏览 评分:0.0
贷款计算 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int zonge, time, repay = 0; float r…… 题解列表 2018年11月23日 0 点赞 0 评论 906 浏览 评分:0.0
(C语言代码) 摘要:#include<stdio.h> #include"malloc.h" typedef struct node { int num; struct node *next; …… 题解列表 2018年11月23日 0 点赞 0 评论 729 浏览 评分:0.0
C语言训练-角谷猜想 (C语言代码)简单,清晰! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int N; scanf("%d",&N);//输入 while(1)//while(1)循环直到最后得到N/…… 题解列表 2018年11月23日 0 点赞 0 评论 1864 浏览 评分:0.0
题解 1065: 2004年秋浙江省计算机等级考试二级C 编程题(1) 摘要:#include<stdio.h> #include "math.h" #define N 10 #define min(a,b) (a)>(b)?(b):(a) int main() { …… 题解列表 2018年11月23日 0 点赞 0 评论 1016 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int n); double mypow(double x,int n); double get_double(double x,in…… 题解列表 2018年11月23日 0 点赞 0 评论 1332 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> int ctof(int c); int main() { int i=-100; for(;i<=150;i+=5) prin…… 题解列表 2018年11月23日 0 点赞 0 评论 1125 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include<stdio.h> #include"math.h" int main() { int n,row,col,temp,matrix[6][6],i,j,max_elem…… 题解列表 2018年11月23日 0 点赞 0 评论 841 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> int main() { int scores[1000],score,i=0,j,excellent=0,pass=0,unpass=0; …… 题解列表 2018年11月23日 0 点赞 0 评论 987 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++描述 点开有惊喜) 摘要:解题思路:先找最小的数的角标,再进行交换的工作注意事项:没什么需要注意的,仔细就行了,注意绝对值的使用 abs(m)是对m取绝对值,用abs的时候注意要定义一个math参考代码#include <io…… 题解列表 2018年11月23日 0 点赞 0 评论 1032 浏览 评分:0.0