Advertisement
ADL_Rodrigo_Silva

Untitled

Dec 12th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.46 KB | None | 0 0
  1. import java.util.*;
  2. import java.util.Scanner;
  3.  
  4. public class Ejemplo1 {
  5.      
  6.         public static void main(String[] args) {
  7.         Scanner sc = new Scanner(System.in);
  8.        
  9.         System.out.println("Ingrese nombre destinatario ");
  10.         String nombreDestinatario = sc.nextLine();
  11.        
  12.         System.out.println("Ingrese apellido destinatario ");
  13.         String apellidoDestinatario = sc.nextLine();
  14.        
  15.         System.out.println("Ingrese dirección destinatario ");
  16.         String direccionDestinatario = sc.nextLine();
  17.        
  18.         System.out.println("Ingrese el número dirección  ");
  19.         String numero = sc.nextLine();
  20.        
  21.         System.out.println("Ingrese ciudad destino ");
  22.         String ciudadDestino = sc.nextLine();
  23.        
  24.         System.out.println("Ingrese teléfono remitente ");
  25.         String telefonoRemitente = sc.nextLine();
  26.        
  27.         sc.close();
  28.      
  29.         String etiquetaEncomienda1 = nombreDestinatario + "\n" + apellidoDestinatario + "\n" + direccionDestinatario + "\n" + numero + "\n" + ciudadDestino + "\n" + telefonoRemitente;
  30.        
  31.         System.out.println(etiquetaEncomienda1);
  32.         /*
  33.         String etiquetaEncomienda2 = String.format(
  34.                 "DE: %s %s\\n"
  35.                 + "Dirección: %s %d\\n"
  36.                 + "Ciudad: %s\\n"
  37.                 + "Teléfono: %d\\n",
  38.                 nombreDestinatario, apellidoDestinatario, direccionDestinatario, numero, ciudadDestino, telefonoRemitente);
  39.         System.out.println(etiquetaEncomienda2);
  40.         */
  41.        
  42.         }  
  43.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement