Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- float i;
- printf("Precio del producto: ");
- scanf("%f", &i);
- float t;
- t = (24*i/100)+i;
- printf("El precio de su producto con IVA es de: %f", t);
- }
Advertisement
Add Comment
Please, Sign In to add comment