C语言 逻辑判断方法 学习模仿2789题解里一个有点意思的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main ( ){ float a ;&nbs…… 题解列表 2025年01月03日 0 点赞 0 评论 202 浏览 评分:0.0
分段函数简单版本 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args) { …… 题解列表 2023年11月01日 0 点赞 0 评论 195 浏览 评分:0.0
题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f", &a); if ((int)a>=0&&(int)a…… 题解列表 2023年08月17日 0 点赞 0 评论 244 浏览 评分: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 评论 217 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#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 评论 157 浏览 评分:0.0
2790: 分段函数 摘要:解题思路:注意事项:参考代码:import sysx = float(input())if x < 0 or x >= 20: sys.exit()elif x < 5: print(&#…… 题解列表 2022年12月03日 0 点赞 0 评论 215 浏览 评分:0.0