题解 1057: 二级C语言-分段函数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

用%0.2f规定输出格式

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int x; double y; scanf("%d",&x); if(x<1)y=x; else if(x>……

C++描述:用函数最方便啦!QAQ

摘要:如果想看同类代码可看我的空间。用函数最简单了!QAQ#include <iostream>//先锋头文件  #include <algorithm> using namespace std; f……

二级C语言-分段函数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float m,n; scanf("%f",&m); if(m<1){ n=m; } else if(m>=1……