Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- float deposit,tax,mont;
- printf("Entre com o valor depositado : \n"); scanf("%f",&deposit);
- printf("Entre com a taxa de juros simples : \n"); scanf("%f",&tax);
- mont = deposit*(1+tax);
- printf("O montante, apos um mes, eh de : %f\n",mont);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment