Skip to content

Instantly share code, notes, and snippets.

@NicolasFrancaX
Last active March 15, 2016 00:05
Show Gist options
  • Save NicolasFrancaX/039f012c569e603c2755 to your computer and use it in GitHub Desktop.
Save NicolasFrancaX/039f012c569e603c2755 to your computer and use it in GitHub Desktop.
/*
* Problem: https://www.urionlinejudge.com.br/judge/en/problems/view/1009
*
*/
#include <stdio.h>
int main() {
char *name;
float salary, sale_total, total;
scanf("%s", name);
scanf("%f", &salary);
scanf("%f", &sale_total);
total = salary + (sale_total * 0.15);
printf("TOTAL = R$ %f\n", total);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment