1007题: 分段函数求值(if-else) 摘要:# 自己写的代码 ```c #include int main() { int x; scanf("%d",&x); if(x=1&&x…… 题解列表 2023年04月25日 0 点赞 0 评论 73 浏览 评分:0.0
c++解题思路 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int x,y; cin >> x; if(x>=10) …… 题解列表 2023年03月03日 2 点赞 0 评论 88 浏览 评分:9.0
1007: [编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) { …… 题解列表 2023年02月23日 0 点赞 0 评论 84 浏览 评分:9.9
c++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x,y; cin>>x; if (x<1) …… 题解列表 2023年02月11日 0 点赞 0 评论 355 浏览 评分:9.9
分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x, y; scanf("%d", &x); if (x < 1) { y = x; …… 题解列表 2023年02月08日 0 点赞 0 评论 47 浏览 评分:0.0
<函数>分段函数求值(C语言) 摘要:#include<stdio.h> int Fun(int x) { int y = 0; if (x < 1) { y = x; } else if (x >= 1 &…… 题解列表 2023年02月04日 0 点赞 0 评论 61 浏览 评分:0.0
1007: [编程入门]分段函数求值(简单易懂) 摘要:```c #include int main() { int x,y; scanf("%d", &x); if (x < 1) { y = x; } else if…… 题解列表 2023年01月29日 0 点赞 0 评论 157 浏览 评分:9.9
编写题解 1007: [编程入门]分段函数求值 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { /** …… 题解列表 2022年12月23日 0 点赞 0 评论 79 浏览 评分:0.0
用switch开关语句解决分段问题 摘要:解题思路:采用switch开关语句,使代码更为简洁注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int x,y,i; scanf("…… 题解列表 2022年11月26日 0 点赞 2 评论 349 浏览 评分:9.9
编写题解 1007: [编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) y=x; els…… 题解列表 2022年11月21日 0 点赞 0 评论 56 浏览 评分:0.0