Multiplicacion

  • June 2020
  • PDF

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


Overview

Download & View Multiplicacion as PDF for free.

More details

  • Words: 40
  • Pages: 1
#include <stdio.h> int main () { int a=0; int s=0; int multiplicacion=0; printf ("ingrese el primer numero a multiplicacion"); scanf ("%i",&a); printf ("ingrese el segundo numero a multiplicacion"); scanf ("%i",&s); multiplicacion=a*s; printf ("la multiplicacion es %i", multiplicacion); return 0; }

Related Documents