#include <stdio.h>
int main()
{ int a,b,c;
scanf("%d %d %d",&a,&b,&c);
float i=((a/100)*b)*c;
float amount=i+a;
printf("Interest=%.2f\n",i);
printf("Amount=%.2f", amount);
return 0;
}
10000 7 5
Interest=3500.00 Amount=13500.00
20000 8 4
Interest=6400.00 Amount=26400.00
Question 1 Correct Mark 2.00 out of 2.00 Flag question Question text A company has had several incidents involving users downloading unauth...
No comments:
Post a Comment