工资和奖金
This commit is contained in:
parent
cb6e3749ee
commit
1b88461434
|
@ -0,0 +1,10 @@
|
||||||
|
#include <cstdio>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char name[10];
|
||||||
|
double a, b;
|
||||||
|
scanf("%s%lf%lf", &name, &a, &b);
|
||||||
|
printf("TOTAL = R$ %.2lf\n", a + b * 0.15);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue