Advertisement
ADL_Rodrigo_Silva

Untitled

Dec 27th, 2021
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.45 KB | None | 0 0
  1. package cl.adl.repaso;
  2.  
  3. public class Blablabla {
  4.  
  5.     public static void main(String[] args) {
  6.    
  7.         System.out.println("A dagle átomos!!!");
  8.        
  9.         int [] variable = {4, 7, 9, 1, 3, 10};
  10.        
  11.         String [] diasDeLaSemana = {"Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sábado"};
  12.        
  13.        
  14.         for (int i=0; i<variable.length ; i++) {   // i++ --> i=i+1
  15.            
  16.             System.out.println( variable[i] );
  17.            
  18.         }
  19.        
  20.         /*
  21.          * i=0; boo = false;  boo sale como true
  22.          * i=1; boo = true; boo sale como false
  23.          * i=2; boo = false; boo sale como true
  24.          * i=3; boo = true; boo sale como false
  25.          * i=4; boo = false; boo sale como true
  26.          * i=5; boo = true; boo sale como false
  27.          */
  28.        
  29.         boolean boo = false;
  30.         for (int i=0; i<diasDeLaSemana.length; i=i+1) {
  31.            
  32.             if (boo) {
  33.                 System.out.println( diasDeLaSemana[i] + " ");
  34.                 boo = false;
  35.             } else {
  36.                 boo = true;
  37.             }
  38.            
  39.         }
  40.        
  41.         /*
  42.          *
  43.          * Imprimir por system los números pares del arreglo {4, 7, 9, 1, 3, 10};
  44.          */
  45.        
  46.         for (int i=0; i<variable.length; i++) {
  47.            
  48.             if(variable[i]%2==1) {
  49.                 System.out.println("Dato Par es " + variable[i]);
  50.             }
  51.            
  52.         }
  53.        
  54.         /*
  55.          *
  56.          * Imprimir los números pares mayores que 4 y menores que 24 --> {4, 7, 9, 1, 3, 10, 13, 8, 17, 6, 24, 2};
  57.          */
  58.        
  59.         for (int i=0; i<variable.length; i++) {
  60.            
  61.            
  62.         }
  63.        
  64.         /*
  65.          *
  66.          * Imprimir todas las tablas de multiplicar de 1 al 10
  67.          *
  68.          *
  69.          * 1*1=1; 1*2=2; 1*3=3 .... 1*10=10
  70.          *
  71.          * ...
  72.          *
  73.          *
  74.          * 10*1=10; 10*2=20; ... 10*10=100
  75.          *
  76.          */
  77.        
  78.         for (int i=1; i<=10; i++ ) { // i representa en este caso, las tablas de tablas de multiplicar
  79.            
  80.             System.out.println("Tabla de Multiplicar " + i);
  81.            
  82.             for (int j=1; j<=10; j++) {
  83.                
  84.                 int multiplicacion = i*j;
  85.                 System.out.println(i + " * " + j + " = " + multiplicacion);
  86.                
  87.             }
  88.            
  89.            
  90.         }
  91.        
  92.         /*
  93.          *
  94.          * Imprimir la serie de Fibonacci hasta 100
  95.          *
  96.          * 0, 1 --> 1 --> 2 --> 3 --> 5 --> 8 --> 13
  97.          *
  98.          *
  99.          */
  100.        
  101.         int anteriorAnterior = 0;
  102.         int anterior = 1;
  103.        
  104.         int limite = 100;
  105.         int numeroNuevo;
  106.        
  107.         System.out.println("***************");
  108.         System.out.println(anteriorAnterior);
  109.         System.out.println(anterior);
  110.        
  111.         while (anteriorAnterior + anterior <= limite) {
  112.            
  113.             numeroNuevo = anterior + anteriorAnterior;
  114.            
  115.             System.out.println(numeroNuevo);
  116.            
  117.             anteriorAnterior = anterior;
  118.             anterior = numeroNuevo;
  119.            
  120.            
  121.         }
  122.        
  123.        
  124.        
  125.        
  126.    
  127.    
  128.     }
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement