BREEZE------之这一篇没有小技巧(用的C) 摘要:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x<3) printf("%d",2*x); else if(x>=20) prin…… 题解列表 2019年02月21日 0 点赞 0 评论 1052 浏览 评分:9.9
分段函数计算 摘要:解题思路:if-else语句if(表达式) 语句1;else 语句2;其语义是:如果表达式的值为真,则执行语句1,否则执行语句2 。参考代码:#include<stdio.h> …… 题解列表 2022年03月15日 0 点赞 0 评论 272 浏览 评分:9.9
分段计算题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<3) y=2*x; else if(x<20) y…… 题解列表 2021年11月07日 0 点赞 0 评论 189 浏览 评分:2.0
1985 永远都是C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y; scanf("%d",&x); if(x<3) {y=2*x; }else if (x<2…… 题解列表 2021年11月02日 0 点赞 0 评论 157 浏览 评分:0.0
1985: 分段计算 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int x; cin >> x; if(x<3)…… 题解列表 2022年01月02日 0 点赞 0 评论 130 浏览 评分:0.0
分段计算-题解(C++代码) 摘要:没有太大的问题,注意细节就不会出错 代码如下: ```cpp #include using namespace std; int main() { int x,y; cin>>x…… 题解列表 2019年11月02日 0 点赞 0 评论 490 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int x,y; scanf("%d",&x); if (x<3) { y = 2*x; } e…… 题解列表 2024年11月21日 0 点赞 0 评论 53 浏览 评分: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
分段计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<3) y=2*x; if(x>=3 && x<20…… 题解列表 2020年12月01日 0 点赞 0 评论 291 浏览 评分:0.0
分段计算 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x < 3) printf("%d",2*x); else …… 题解列表 2019年02月26日 0 点赞 0 评论 679 浏览 评分:0.0