Top Banner
ARITMETICA << - Hallar A+B-C+100 Código: [Seleccionar] class JavaAritmetica1 { public static void main (String mago []) { int A, B, C; System.out.print ("Inserte A: "); A = Leer.datoInt (); System.out.print ("Inserte B: "); B = Leer.datoInt (); System.out.print ("Inserte C: "); C = Leer.datoInt (); System.out.println ("\n" + A + " + " + " " + B + " - " + C + " + " + 100 + " = " + (A + B - C + 100)); } } Hallar (a-b)(a+b) Código: [Seleccionar] class JavaAritmetica2 { public static void main (String elMago []) {
36

Ejercicios Sencillos Con Estructuras y Arreglos

Nov 12, 2014

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript

ARITMETICA > SERIES