top of page

PROGRAMA DE SUMA Y EL RESULTADO LO DIVIDE EN CIERTA CANTIDAD
Proceso sin_titulo
Escribir "ingrese valor de a";
Leer a;
Escribir "ingrese valor de b";
Leer b;
suma<-(a+b);
Escribir "el resultado a+b es:"," " ,suma;
Escribir "ingrese valor de c";
Leer c;
divide<-(suma/c);
Escribir "el resultado suma/c es:"," " ,divide;
FinProceso
bottom of page