感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >>x; i…… 题解列表 2023年06月17日 0 点赞 0 评论 124 浏览 评分:0.0
分段函数 -- 简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n; scanf("%lf",&n); if(0<=n && n<5) / /注…… 题解列表 2023年02月20日 0 点赞 0 评论 156 浏览 评分:0.0
2790: 分段函数(c++) 摘要:解题思路:注意事项:保留3位浮点小数参考代码:#include<bits/stdc++.h>using namespace std;int main(){ float x; cin>>x;…… 题解列表 2023年02月06日 0 点赞 0 评论 254 浏览 评分:9.9
分段函数(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fun(double x){ if(x>=0 && x<5) { return -…… 题解列表 2023年01月14日 0 点赞 0 评论 253 浏览 评分:7.3
2790: 分段函数 摘要:```cpp #include #include using namespace std; int main() { float x; cin>>x; if(x…… 题解列表 2023年01月13日 0 点赞 1 评论 476 浏览 评分:9.9
C语言函数调用_tese.1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void gcd(double N); void jun(double I); void rest(double C); in…… 题解列表 2022年12月13日 0 点赞 0 评论 397 浏览 评分:9.9
2790: 分段函数 摘要:解题思路:注意事项:参考代码:import sysx = float(input())if x < 0 or x >= 20: sys.exit()elif x < 5: print(&#…… 题解列表 2022年12月03日 0 点赞 0 评论 214 浏览 评分:0.0
分段函数(分支法) 摘要:解题思路:就是简单的分支来控制这个函数注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); if(a>=0&…… 题解列表 2022年11月11日 0 点赞 0 评论 633 浏览 评分:9.7