Skip to content

Instantly share code, notes, and snippets.

@joaogui1
Created May 24, 2016 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaogui1/c82dec67f196ac59f8c50b22d3a8f20d to your computer and use it in GitHub Desktop.
Save joaogui1/c82dec67f196ac59f8c50b22d3a8f20d to your computer and use it in GitHub Desktop.
#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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment