分段函数计算 摘要:解题思路:if-else语句if(表达式) 语句1;else 语句2;其语义是:如果表达式的值为真,则执行语句1,否则执行语句2 。参考代码:#include<stdio.h> …… 题解列表 2022年03月15日 0 点赞 0 评论 274 浏览 评分:9.9
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#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