2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:比较麻烦注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x; printf("please enter…… 题解列表 2018年06月07日 0 点赞 0 评论 482 浏览 评分: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 评论 515 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:定义2 个变量,运用if与else语句。注意事项:注意定义的2个数要为单精度或双精度,否则会出现精确不到位的错误,注意结果保留2位小数。参考代码:#include<stdio.h>#incl…… 题解列表 2018年07月13日 0 点赞 0 评论 605 浏览 评分: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 评论 787 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { double in,out; scanf("%lf"…… 题解列表 2018年10月22日 2 点赞 0 评论 485 浏览 评分: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 评论 559 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<math.h> int main() &n 题解列表 2018年12月21日 0 点赞 0 评论 439 浏览 评分:0.0
很简单的二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:sqrt(x+1)=========pow(x+1,0.5)参考代码:#include <stdio.h> #include <math.h> double f(double …… 题解列表 2018年12月30日 1 点赞 0 评论 556 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:函数的应用注意事项:保留两位数参考代码:#include<stdio.h>#include<math.h>int main() { float x; scanf("%f",&x); if(x…… 题解列表 2019年01月03日 0 点赞 0 评论 423 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int x; double ans; scanf("%d", &x); …… 题解列表 2019年01月18日 0 点赞 0 评论 424 浏览 评分:0.0