-
Notifications
You must be signed in to change notification settings - Fork 0
/
TareaHimnoNacional.java
33 lines (27 loc) · 1.01 KB
/
TareaHimnoNacional.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* 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 tareahimnonacional;
/**
*
* @author tguca-L01
*/
public class TareaHimnoNacional {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// Practicando imprimir en pantalla himno nacional - lab 1
System.out.println("CORO\nTu bandera es un lampo del cielo"
+ "\nPor un bloque de nieve cruzado"
+ "\nY se ven en su fondo cruzado"
+ "\nCinco estrellas de palido azul\n");
System.out.println("CORO");
System.out.println("Tu bandera es un lampo de cielo");
System.out.println("Por un bloque de nieve cruzado");
System.out.println("y se ven en su fondo sagrado");
System.out.println("Cinco estrellas de palido Azul");
}
}