java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月06日 0 点赞 0 评论 130 浏览 评分:9.9
2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >>x; i…… 题解列表 2024年01月06日 0 点赞 0 评论 109 浏览 评分:9.9
2790: 分段函数 摘要:解题思路:注意事项:要使用浮点数定义参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; cin >…… 题解列表 2024年01月07日 0 点赞 0 评论 94 浏览 评分:9.9
2790: 分段函数(c++) 摘要:解题思路:注意事项:保留3位浮点小数参考代码:#include<bits/stdc++.h>using namespace std;int main(){ float x; cin>>x;…… 题解列表 2023年02月06日 0 点赞 0 评论 259 浏览 评分: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 评论 430 浏览 评分:9.9
2790:分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { float N; scanf("%f",&N); if(0<=N && N<20) { …… 题解列表 2024年08月05日 0 点赞 0 评论 293 浏览 评分:9.9
2790: 分段函数 摘要:```cpp #include #include using namespace std; int main() { float x; cin>>x; if(x…… 题解列表 2023年01月13日 0 点赞 1 评论 482 浏览 评分: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 评论 403 浏览 评分:9.9