2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define N 10 int main() { int a[N], i, j =0; float ave =…… 题解列表 2018年05月03日 0 点赞 0 评论 1792 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:1、主要就是判断 isprime(x) 的参数是不是素数了,看下面代码就行注意事项:参考代码:#include<stdio.h> #include<math.h> //如果参数是素数…… 题解列表 2018年05月03日 0 点赞 0 评论 808 浏览 评分:0.0
钟神赛车 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 钟神赛车_水到不能再水 { public static void main(String[] args) { // TODO Auto-gen…… 题解列表 2018年05月03日 0 点赞 0 评论 1028 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x; double fx; scanf("%…… 题解列表 2018年05月03日 0 点赞 0 评论 1765 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> #define N 6 int main() { int m, a[N][N],…… 题解列表 2018年05月03日 0 点赞 0 评论 1099 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:大多数金融类问题看似复杂,其本质皆为数学上的分段函数,只要细心将其分类且细心计算,便可成功求解。注意事项:1.取值范围的表示; 2.乘号的必要性; 3.if-else函数虽复杂,但却来的扎实…… 题解列表 2018年05月03日 0 点赞 0 评论 851 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:注意不要忘记写* if后的括号里不要带"" 或; 等。参考代码:#include"stdio.h"int main(){ int x,y; scanf("%d",&x); if(x…… 题解列表 2018年05月03日 0 点赞 0 评论 861 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:scanf之前一定要先定义一个int ,不能直接运用scanf,最后一个else后面不能再有( )。参考代码: #include"stdio.h"int main(){ int a…… 题解列表 2018年05月03日 0 点赞 0 评论 1163 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码) 摘要:/* 2018年5月3日16:05:22 目的: sum=2+5+8+11+14+…,输入正整数n,求sum的前n项和。 */ #include <stdio.h> int mai…… 题解列表 2018年05月03日 0 点赞 0 评论 774 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:/* 2018年5月3日16:24:43 目的: 求出10至1000之内能同时被2、3、7整除的数,并输出。 每行一个 */ #include <stdio.h> int mai…… 题解列表 2018年05月03日 0 点赞 0 评论 628 浏览 评分:0.0