2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double fact(int n){ int i; double sum=1; …… 题解列表 2018年08月25日 0 点赞 0 评论 1303 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float x,y; scanf("%f",&x); i…… 题解列表 2018年08月25日 0 点赞 0 评论 1208 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int ctof(int c){ int f; f=32+c*9/5; return f;}int main()…… 题解列表 2018年08月25日 0 点赞 0 评论 762 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a[10][10]; int i,j,maxi,ma…… 题解列表 2018年08月25日 0 点赞 0 评论 949 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[50],i=0; int count1=0,count2=0,count3=0; …… 题解列表 2018年08月25日 0 点赞 0 评论 844 浏览 评分:0.0
蓝桥杯算法提高VIP-任意年月日历输出 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string.h>#include <set>using namespace std;int main(){ …… 题解列表 2018年08月25日 0 点赞 0 评论 820 浏览 评分:0.0
a = a * 10 + 2; Sn = Sn + a; 摘要:参考代码:#include<stdio.h>int main(){ int n,Sn = 0,i,a = 0; scanf("%d",&n); for(i=0; i<n; i++) …… 题解列表 2018年08月25日 0 点赞 0 评论 872 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int n){ int i; double sum=1; for(i=1;i<=n;++…… 题解列表 2018年08月25日 0 点赞 0 评论 1022 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:解题思路:当x>y时,将y作为最大公因子依次递减,寻找最大公因子;选择x的倍数依次递增寻找最小公倍数注意事项:参考代码:#include<stdio.h>int main(){ int x,y…… 题解列表 2018年08月25日 0 点赞 0 评论 646 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct{ char num[50]; char name[50]; …… 题解列表 2018年08月25日 0 点赞 0 评论 1033 浏览 评分:0.0