2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:1/2与1.0/2的区别参考代码:#include<stdio.h>#include<math.h>int main(){ int n; double y; scanf("%d",…… 题解列表 2019年05月05日 0 点赞 0 评论 266 浏览 评分:0.0
很简单的二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:sqrt(x+1)=========pow(x+1,0.5)参考代码:#include <stdio.h> #include <math.h> double f(double …… 题解列表 2018年12月30日 1 点赞 0 评论 478 浏览 评分:0.0
二级C语言-分段函数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main() { float fx,x; scanf("%f",&x); if (x<0) …… 题解列表 2020年11月03日 0 点赞 0 评论 222 浏览 评分:0.0
题解 1067: 二级C语言-分段函数 摘要:还能更简单吗#include<stdio.h> #include<math.h> int main() { double x; scanf("%lf",&x); printf("%.…… 题解列表 2021年11月15日 0 点赞 0 评论 113 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ int x; double y; scanf("%d",&x); if(x<0…… 题解列表 2017年08月10日 0 点赞 0 评论 762 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年04月10日 0 点赞 0 评论 874 浏览 评分:0.0
分段函数 二级C语言 摘要:解题思路: 注意事项:保留两位,double类型。用到平方根函数sqrt()、绝对值函数fabs()、幂函数pow()。参考代码:#include<stdio.h> #include<math.h>…… 题解列表 2022年11月17日 0 点赞 0 评论 94 浏览 评分:0.0
1067——二级C语言-分段函数 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年01月17日 0 点赞 0 评论 112 浏览 评分:0.0
二级C语言-分段函数-题解(C语言代码) 摘要:```c #include #include int main() { double a,b; scanf("%lf",&a); if(a…… 题解列表 2020年05月23日 0 点赞 0 评论 274 浏览 评分:0.0
1067: 二级C语言-分段函数 清晰易懂 摘要:本题需要注意一个点,计算(x+1)^1/2的时候,不能写1/2,要写成1.0/2,计算前者两个都是整型,故运算结果是整型,结果是0,后者由于其中一个是浮点,另外一个也会在运算是被自动转换为浮点数,运算…… 题解列表 2024年08月06日 0 点赞 0 评论 96 浏览 评分:0.0