文章目录
AcWing 610. 工资和奖金
本题链接:AcWing 610. 工资和奖金
本博客给出本题截图:
AC代码
代码:
#include <iostream>
using namespace std;
int main()
{
char a[11];
double x, y;
cin >> a >> x >> y;
cout << "TOTAL = R$ ";
printf("%.2lf",x + y * 0.15);
return 0;
}