Beecrowd1009 – Salary with Bonus solution with C


 

Beecrowd1009 – Salary with Bonus solution with C

problem question

#include<stdio.h>

int main() {

double a,b,c;
char name;

scanf("%s %lf %lf",&name,&a,&b);
 c=b*.15+a;

printf("TOTAL = R$ %.2lf\n",c);

return 0;

}

Beecrowd 1026 To Carry or not to Carry Solution

Comments

Popular posts from this blog

URI online judge solution1011 Sphere solution