分段计算-题解(C++代码) 摘要:没有太大的问题,注意细节就不会出错 代码如下: ```cpp #include using namespace std; int main() { int x,y; cin>>x…… 题解列表 2019年11月02日 0 点赞 0 评论 490 浏览 评分:0.0
分段计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int x,y; scanf("%d",&x); if(x<3)y=2*x; else if(x>=3&…… 题解列表 2020年08月05日 0 点赞 0 评论 250 浏览 评分:0.0