Solução de Roger Benet, comentário por João Guilherme.
O problema é semelhante ao da semana passada. Lemos o nome, o salário normal e o montante de vendas, depois imprimimos o salário mais 15% das vendas.
Segue código para melhor entendimento.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<cstdio> | |
int main(){ | |
char w[256]; | |
double salary,bonus; | |
scanf("%s",w); | |
scanf("%lf",&salary); | |
scanf("%lf",&bonus); | |
printf("TOTAL = R$ %.2lf\n",salary+bonus*0.15); | |
return 0; | |
} |