Guest User

Untitled

a guest
Nov 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public static void main(String[] args) {
  2. Scanner sc = new Scanner(System.in);
  3. System.out.print("Introduce la altura");
  4. int alt = sc.nextInt();
  5. System.out.print("Introduce la anchura");
  6. int anch = sc.nextInt();
  7. String aux = "*";
  8. for (int i = 0; i < alt-1; i++) {
  9. System.out.println(aux);
  10. }
  11. for (int j = 0; j < anch; j++) {
  12. System.out.print(aux + " ");
  13. }
  14. }
Add Comment
Please, Sign In to add comment