SOLUTION OF URI 1009 URI SOLUTIONS // question of uri 1009 Salary with Bonus // 1009 (Mahmud_Jamil) BRUR #include <stdio.h> int main() { char a; double b,c,d; scanf("%s %lf %lf", &a,&b,&c); d=b+(c*15)/100; printf("TOTAL = R$ %.2f\n",d); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook