二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>void main(){ float y,x; scanf("%f",&x); if(x<0) y=f…… 题解列表 2022年01月03日 0 点赞 0 评论 255 浏览 评分:0.0
二级C语言-分段函数-题解(C语言代码) 摘要:##### 平方根函数sqrt(),绝对值函数fabs() 和幂函数 pow() ```c #include #include int main() { double numb…… 题解列表 2020年03月15日 0 点赞 0 评论 288 浏览 评分:0.0
二级C语言-分段函数-题解(C++代码) 摘要:#include #include//数学函数的头文件 #include//保留小数位数的头文件 using namespace std; int main() { int x; d…… 题解列表 2019年12月26日 0 点赞 0 评论 635 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x; double fx; scanf("%…… 题解列表 2018年05月03日 0 点赞 0 评论 548 浏览 评分:0.0
分段函数C/C++ 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; double Absolute_value_func…… 题解列表 2022年12月24日 0 点赞 0 评论 121 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 题有bug 摘要:解题思路: 看不清 三还是五,但是居然过了,说明这个是有问题的。注意事项: else if的释义应是“否则,如果”。已经满足上面条件的相反条件。参考代码:#include<stdio.h>#…… 题解列表 2018年01月17日 0 点赞 0 评论 616 浏览 评分: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 评论 346 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h> int main(int argc, char *argv[]) { int x; dou…… 题解列表 2017年06月16日 0 点赞 0 评论 1081 浏览 评分:0.0
BREEZE------之 总算有小技巧系列(用的C) 摘要:终于!有小技巧了! (其实也不算什么啦,只不过写的方便点) 就是可以吧一连串的有规律的范围按顺序写,这样子就可以少掉加&&符号了,((●ˇ∀ˇ●)我就是偷个懒)#include<s…… 题解列表 2019年02月25日 0 点赞 0 评论 888 浏览 评分:0.0
编写题解 1067: 二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:def f(x): if x < 0: return abs(x) elif 0<=x<2: return (x+1)**…… 题解列表 2022年05月29日 0 点赞 0 评论 156 浏览 评分:0.0