1067: 二级C语言-分段函数 摘要:#include<bits/stdc++.h> using namespace std; int main() { double x; cin >> x; if…… 题解列表 2021年12月12日 0 点赞 0 评论 180 浏览 评分:0.0
编写题解 1067: 二级C语言-分段函数 摘要:解题思路:注意事项:#include<iostream>#include<cmath>using namespace std;int main(){ double x,y; cin>>x;…… 题解列表 2021年12月10日 0 点赞 0 评论 83 浏览 评分:0.0
二级C语言-分段函数 摘要:解题思路:如题,分段,并使用数学库函数注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x; scanf("%lf", &x)…… 题解列表 2021年12月08日 0 点赞 3 评论 2121 浏览 评分:9.9
太简单了,不会还有人不会吧 摘要:解题思路:null注意事项:null参考代码:#include<stdio.h>#include<math.h>int main(){ int x; double g; scanf(…… 题解列表 2021年12月08日 0 点赞 0 评论 158 浏览 评分:0.0
编写题解 1067: 二级C语言-分段函数(python) 摘要:解题思路:注意事项:参考代码:x = int(input())if x < 0: y = abs(x)elif 0 <= x < 2: y = (x+1)**0.5elif 2<= x<4…… 题解列表 2021年11月18日 0 点赞 0 评论 308 浏览 评分:9.9
题解 1067: 二级C语言-分段函数 摘要:还能更简单吗#include<stdio.h> #include<math.h> int main() { double x; scanf("%lf",&x); printf("%.…… 题解列表 2021年11月15日 0 点赞 0 评论 112 浏览 评分:0.0
c++分段函数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x; cin>>x; if(x<0){ pr…… 题解列表 2021年11月13日 0 点赞 0 评论 418 浏览 评分:5.0
二级C语言-分段函数题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float x,y; scanf("%f",&x); if(…… 题解列表 2021年11月07日 0 点赞 0 评论 223 浏览 评分:2.0
1067 666成员C语言yyds 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int x;float y;scanf("%d",&x); if (x<0…… 题解列表 2021年11月04日 0 点赞 0 评论 190 浏览 评分:0.0
用c++类求分段函数 摘要:#include<iostream>#include<math.h>#include <iomanip>using namespace std;class text{ private: double…… 题解列表 2021年10月12日 0 点赞 0 评论 752 浏览 评分:9.9