This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
#include<stdio.h> int main() { int x=0; int y=0; int multiplicar=0; printf("INGRESE EL NUMERO QUE SERA MULTIPLICADO"); sanf("%i",&x); printf("INGRESE EL SEGUNDO NUMERO QUE SERA MULTIPLICADO"); sanf("%i",&y); multiplicar=x*y; printf(" EL RESULTADO DE LA MULTIPLICACIONES ES %i", multiplicar); return 0; }