2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x; double fx; scanf("%…… 题解列表 2018年05月03日 0 点赞 0 评论 549 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h> #include <math.h> int main() { double x; scanf("%lf", &x); if(x …… 题解列表 2018年05月05日 0 点赞 0 评论 850 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:注意看清题目,区分abs()和fabs()!参考代码:#include<stdio.h>#include<math.h>double t;double f(double x){ i…… 题解列表 2018年05月06日 0 点赞 0 评论 706 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:比较麻烦注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x; printf("please enter…… 题解列表 2018年06月07日 0 点赞 0 评论 396 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:直接代入函数注意事项:double pow(double x,double y)计算x的y次幂参考代码:#include<stdio.h>#include<math.h>int main()…… 题解列表 2018年07月03日 0 点赞 0 评论 433 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:定义2 个变量,运用if与else语句。注意事项:注意定义的2个数要为单精度或双精度,否则会出现精确不到位的错误,注意结果保留2位小数。参考代码:#include<stdio.h>#incl…… 题解列表 2018年07月13日 0 点赞 0 评论 427 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x, y; scanf("%lf", &x); if (x < 0…… 题解列表 2018年07月15日 3 点赞 0 评论 1661 浏览 评分:6.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 评论 637 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { double in,out; scanf("%lf"…… 题解列表 2018年10月22日 2 点赞 0 评论 427 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:调用函数不要出错参考代码:#include<stdio.h> #include<math.h> int main() { int x; float f=0; sc…… 题解列表 2018年10月29日 0 点赞 0 评论 507 浏览 评分:0.0