C语言 逻辑判断方法 学习模仿2789题解里一个有点意思的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main ( ){ float a ;&nbs…… 题解列表 2025年01月03日 0 点赞 0 评论 141 浏览 评分:0.0
2790-普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x,y; scanf("%f",&x); if ( 0 <= x && x < 5) y=-x+2…… 题解列表 2024年11月23日 0 点赞 0 评论 138 浏览 评分:0.0
注意细节!!!! 摘要:解题思路:注意事项:一定要主要好细节!!!参考代码:#include<stdio.h>int main(){ float x; scanf("%f",&x); if(0<=x&&x<…… 题解列表 2024年11月11日 0 点赞 0 评论 71 浏览 评分:0.0
2790:分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { float N; scanf("%f",&N); if(0<=N && N<20) { …… 题解列表 2024年08月05日 0 点赞 0 评论 260 浏览 评分:9.9
编写题解 2790: 分段函数python 摘要:参考代码:N = float(input()) if N >= 0 and N < 5: print("%.3f" %(-N+2.5)) elif N >= 5 and N < 10: …… 题解列表 2024年03月06日 0 点赞 0 评论 197 浏览 评分:9.9
编写题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码#include <iostream>using namespace std;int main(){ float x,y; cin>>x; if(x>=0…… 题解列表 2024年02月05日 0 点赞 0 评论 78 浏览 评分:0.0
编写题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); if(a>=0&&a<5) printf("%…… 题解列表 2024年02月04日 0 点赞 0 评论 85 浏览 评分:0.0
python版代码!!!! 摘要:解题思路:注意事项:参考代码:def f(x): if 0 <= x < 5: result = -x + 2.5 elif 5 <= x < 10: resu…… 题解列表 2024年02月03日 0 点赞 0 评论 170 浏览 评分:6.0
编写题解 2790: 分段函数 摘要:解题思路:注意事项:用小数类型定义;改头文件参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; c…… 题解列表 2024年01月07日 0 点赞 0 评论 76 浏览 评分:7.3
2790: 分段函数 摘要:解题思路:注意事项:要使用浮点数定义参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >…… 题解列表 2024年01月07日 0 点赞 0 评论 61 浏览 评分:9.9