#include<iostream>
#include<math.h>
using namespace std;
int main()
{
double n;
while(cin>>n)
{
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
if(n>=0.01 && n<=100.00)
{
cout<<"$"<<floor(((n*0.9)+8)*100)/100<<endl;
}
else if(n>=100.01 && n<=500.00)
{
cout<<"$"<<floor(n*0.8*100)/100<<endl;
}
else if(n>=500.01)
{
cout<<"$"<<floor(n*0.6*100)/100<<endl;
}
}
}
請問哪裡有瑕疵啊??
WA (line:328)
答案不正確
您的答案為: $729.80
正確答案為: $729.81
#include
#include
using namespace std;
int main()
{
double n;
while(cin>>n)
{
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
if(n>=0.01 && n<=100.00)
{
cout<<"$"< }
else if(n>=100.01 && n<=500.00)
{
cout<<"$"< }
else if(n>=500.01)
{
cout<<"$"< }
}
}
請問哪裡有瑕疵啊??
WA (line:328)
答案不正確
您的答案為: $729.80
正確答案為: $729.81