万能头文件,规定格式输出 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a,b; cin>>a; i…… 题解列表 2022年04月26日 0 点赞 0 评论 197 浏览 评分:0.0
二级C语言-分段函数-题解(C语言代码) 摘要:```c #include int main() { float x; scanf("%f",&x); if(x=1&&x…… 题解列表 2021年02月02日 0 点赞 0 评论 264 浏览 评分:0.0
。。。。。。。。。。。。。 摘要:解题思路:注意事项:精度参考代码:#include<stdio.h>int main(){ double x,y; scanf("%lf",&x); if(x<1) { …… 题解列表 2021年06月05日 0 点赞 0 评论 286 浏览 评分:0.0
二级C语言-自定义函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double x,y; scanf("%lf",&x); if(x<1) { y=x; } else if(x…… 题解列表 2022年03月07日 0 点赞 0 评论 201 浏览 评分:0.0
二级C语言-分段函数-题解(python) 摘要:解题思路:注意事项:参考代码:x = int(input())if x<1: y = xelif 1<=x<10: y = 2*x-1else: y = 3*x-11print("{…… 题解列表 2021年10月15日 0 点赞 0 评论 235 浏览 评分:0.0
二级c语言-分段函数(C++ 代码) 摘要:解题思路:参考代码: #include <iostream>using namespace std;#include <iomanip> //包含fixed和setprecisionint main …… 题解列表 2022年02月20日 0 点赞 0 评论 383 浏览 评分:0.0
二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float m,n; scanf("%f",&m); if(m<1){ n=m; } else if(m>=1…… 题解列表 2022年02月16日 0 点赞 0 评论 227 浏览 评分:0.0
1057 henkiiC语言4665 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x;float y;scanf ("%d",&x); if (x<1)y=x; else if (x…… 题解列表 2021年11月04日 0 点赞 0 评论 282 浏览 评分:0.0
二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main(){ double x,y; cin>…… 题解列表 2021年11月10日 0 点赞 0 评论 200 浏览 评分:0.0
二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main(){ double x,y; cin>…… 题解列表 2021年11月10日 0 点赞 0 评论 179 浏览 评分:0.0