Programa 1
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ejercicio.pkg1; import java.util.Scanner; /** * * @author conalep */ public class Ejercicio1 { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner sc=new Scanner(System.in); System.out.println("Paulina Guadalupe Rios Valdez"); System.out.println("Captura una variable de tipo entero: "); int j=sc.nextInt(); System.out.println("Ciclo FOR "); for(int x=1;x<=5;x++){ System.out.println(j); ...