2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(){ double x,y; s…… 题解列表 2017年12月18日 0 点赞 0 评论 692 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ double x; scanf("%lf", &x); if (x < …… 题解列表 2019年02月23日 0 点赞 0 评论 380 浏览 评分:0.0
二级java分段函数 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main { public static void main(String[] args) { Scan…… 题解列表 2024年03月22日 0 点赞 0 评论 121 浏览 评分:0.0
二级C语言-分段函数-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cmath> using namespace std; float f(int ); int main…… 题解列表 2020年08月16日 0 点赞 0 评论 261 浏览 评分:0.0
: 二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double h(double x){ if(x<0) { return fa…… 题解列表 2024年12月08日 0 点赞 0 评论 232 浏览 评分:0.0
二级C语言-分段函数-题解(C语言代码) 摘要:```python from math import * x=eval(input()) if x…… 题解列表 2020年04月19日 0 点赞 0 评论 265 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main(void) { …… 题解列表 2017年07月24日 0 点赞 0 评论 861 浏览 评分:0.0
题解 1067: 二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){double x;scanf("%lf", &x);if (x < 0)x = f…… 题解列表 2022年02月06日 0 点赞 0 评论 149 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { double in,out; scanf("%lf"…… 题解列表 2018年10月22日 2 点赞 0 评论 427 浏览 评分:0.0
1067: 二级C语言-分段函数 清晰易懂 摘要:本题需要注意一个点,计算(x+1)^1/2的时候,不能写1/2,要写成1.0/2,计算前者两个都是整型,故运算结果是整型,结果是0,后者由于其中一个是浮点,另外一个也会在运算是被自动转换为浮点数,运算…… 题解列表 2024年08月06日 0 点赞 0 评论 96 浏览 评分:0.0