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 a=0; int s=0; int d=0; int suma=0; printf ("ingrese el primer lado a suma"); scanf ("%i",&a); printf ("ingrese el segundo lado a suma"); scanf ("%i",&s); printf ("ingrese el tercer lado a suma"); scanf ("%i",&d); suma=a+s+d; printf ("la suma es %i", suma); return 0; }