C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:对于三个条件的判断语句,我们采用if{……}else if{……}else 语句 注意事项:最后跳出判断语句输出y参考代码:#include<stdio…… 题解列表 2017年09月18日 3 点赞 2 评论 608 浏览 评分:0.0
[编程入门]分段函数求值-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1007.html * @author…… 题解列表 2019年07月30日 0 点赞 0 评论 419 浏览 评分:0.0
编写题解 1007: [编程入门]分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) y=x; els…… 题解列表 2022年11月21日 0 点赞 0 评论 61 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:有惊吓注意事项:参考代码:#include<stdio.h>int main(){int x,y;scanf("%d",&x);if(x<1){ y=x;}if(1<=x&&x<…… 题解列表 2018年11月07日 1 点赞 0 评论 342 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>main(){ int x,y; scanf("%d",&x); if(x<1) { y=x; } else if(x>=1&…… 题解列表 2018年08月02日 0 点赞 0 评论 263 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ int x; int y=0; scanf("%d",&x); if(x<1){ y=x; } if((x<10&&x>1)||x…… 题解列表 2024年08月04日 0 点赞 0 评论 131 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 336 浏览 评分:0.0
1007: [编程入门]分段函数求值 摘要:#include<stdio.h> int main() { int i,y; scanf("%d",&i); if(i<1){ y=i; …… 题解列表 2022年05月06日 0 点赞 0 评论 144 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,y; scanf("%d",&x); if(x>=1) if(x<10) y=2*x-1; …… 题解列表 2021年08月12日 0 点赞 0 评论 152 浏览 评分:0.0
1007: [编程入门]分段函数求值 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月10日 0 点赞 0 评论 144 浏览 评分:0.0