题目描述
blablabla
样例
#include<iostream>
#include<iomanip>
using namespace std;
int main() {
double x;
double y = 0;
cin >> x;
if (x <= 2000) {
cout << "Isento";
}
else if (x > 2000 && x <= 3000) {
y = (x-2000) * 0.08;
cout << fixed << setprecision(2) << "R$ " << y << endl;
}
else if (x > 3000 && x <= 4500) {
y = (x-3000) * 0.18+1000*0.08;
cout << fixed << setprecision(2) << "R$ " << y << endl;
}
else if (x > 4500) {
y = (x -4500)* 0.28+80+270;
cout << fixed << setprecision(2) << "R$ " << y << endl;
}
return 0;
}
算法1
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
C++ 代码
blablabla
算法2
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
C++ 代码
blablabla