作业介绍
#include <bits/stdc++.h>
using namespace std;
double myfabs( double x){
if(x>=0){
return x;
}else{
return x*-1;
}
}
int main() {
double n;
cin >> n;
cout<<fixed<<setprecision(2)<<myfabs(n);
return 0;
}
- 状态
- 已结束
- 题目
- 5
- 开始时间
- 2024-1-15 0:00
- 截止时间
- 2024-1-23 23:59
- 可延期
- 24 小时