C语言 逻辑判断方法 学习模仿2789题解里一个有点意思的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main ( ){ float a ;&nbs…… 题解列表 2025年01月03日 0 点赞 0 评论 202 浏览 评分: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 评论 195 浏览 评分:0.0
注意细节!!!! 摘要:解题思路:注意事项:一定要主要好细节!!!参考代码:#include<stdio.h>int main(){ float x; scanf("%f",&x); if(0<=x&&x<…… 题解列表 2024年11月11日 0 点赞 0 评论 104 浏览 评分:0.0
2790:分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { float N; scanf("%f",&N); if(0<=N && N<20) { …… 题解列表 2024年08月05日 0 点赞 0 评论 290 浏览 评分:9.9
编写题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); if(a>=0&&a<5) printf("%…… 题解列表 2024年02月04日 0 点赞 0 评论 117 浏览 评分:0.0
题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f", &a); if ((int)a>=0&&(int)a…… 题解列表 2023年08月17日 0 点赞 0 评论 241 浏览 评分:0.0
分段函数的求解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float x,y; scanf("%f",&x); if(x>=0&&x<5) { …… 题解列表 2023年07月13日 0 点赞 0 评论 169 浏览 评分:0.0
编写题解 2790: 分段函数if--else 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float a,y; scanf("%f",&a); if(a<5){ y=-…… 题解列表 2023年07月04日 0 点赞 0 评论 213 浏览 评分: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
分段函数(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fun(double x){ if(x>=0 && x<5) { return -…… 题解列表 2023年01月14日 0 点赞 0 评论 253 浏览 评分:7.3