第九题
题目如下
3-8难度系数1 计算分段函数[1] (5分)
重点还是格式
其他的很基础
完整代码如下
#include<iostream>
#include<stdio.h>
using namespace std;
float f(float x){
if(x == 0){
return 0.0;
} else {
return 1/x;
}
}
int main(){
float x;
cin >> x;
printf("f(%.1f) = %.1f",x,f(x));
}
提交结果如下