Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gs-niteesh/d7ffaac43d2b64ccc0cb2c48d889502a to your computer and use it in GitHub Desktop.
Save gs-niteesh/d7ffaac43d2b64ccc0cb2c48d889502a to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
double mc;
int tt;
int tp;
scanf("%lf\n%d\n%d", &mc, &tt, &tp);
float tip = (mc * tt) / 100;
float tax = (mc * tp) / 100;
int tc = (mc + tip + tax);
printf("%d\n", tc);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment