fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12.  
  13. int maxWidth = 49;
  14.  
  15. int oLength = 1;
  16. String patroon = "";
  17.  
  18. for(int i = 0; i<maxWidth; i+=2){
  19. patroon+=".";
  20. for(int j = 0; j<(maxWidth-oLength)/2; j++){
  21. patroon += " ";
  22. }
  23.  
  24. for(int k = 0; k<oLength; k++){
  25. patroon+="|";
  26. }
  27.  
  28. for(int j = 0; j<(maxWidth-oLength)/2; j++){
  29. patroon += " ";
  30. }
  31. patroon+=".";
  32. oLength+=2;
  33. if(i<maxWidth-1)
  34. patroon+="\n";
  35. }
  36.  
  37.  
  38. patroon+="\n"+new StringBuilder(patroon).reverse().toString();
  39.  
  40. System.out.println(patroon);
  41. }
  42. }
Success #stdin #stdout 0.09s 380480KB
stdin
Standard input is empty
stdout
.                        |                        .
.                       |||                       .
.                      |||||                      .
.                     |||||||                     .
.                    |||||||||                    .
.                   |||||||||||                   .
.                  |||||||||||||                  .
.                 |||||||||||||||                 .
.                |||||||||||||||||                .
.               |||||||||||||||||||               .
.              |||||||||||||||||||||              .
.             |||||||||||||||||||||||             .
.            |||||||||||||||||||||||||            .
.           |||||||||||||||||||||||||||           .
.          |||||||||||||||||||||||||||||          .
.         |||||||||||||||||||||||||||||||         .
.        |||||||||||||||||||||||||||||||||        .
.       |||||||||||||||||||||||||||||||||||       .
.      |||||||||||||||||||||||||||||||||||||      .
.     |||||||||||||||||||||||||||||||||||||||     .
.    |||||||||||||||||||||||||||||||||||||||||    .
.   |||||||||||||||||||||||||||||||||||||||||||   .
.  |||||||||||||||||||||||||||||||||||||||||||||  .
. ||||||||||||||||||||||||||||||||||||||||||||||| .
.|||||||||||||||||||||||||||||||||||||||||||||||||.
.|||||||||||||||||||||||||||||||||||||||||||||||||.
. ||||||||||||||||||||||||||||||||||||||||||||||| .
.  |||||||||||||||||||||||||||||||||||||||||||||  .
.   |||||||||||||||||||||||||||||||||||||||||||   .
.    |||||||||||||||||||||||||||||||||||||||||    .
.     |||||||||||||||||||||||||||||||||||||||     .
.      |||||||||||||||||||||||||||||||||||||      .
.       |||||||||||||||||||||||||||||||||||       .
.        |||||||||||||||||||||||||||||||||        .
.         |||||||||||||||||||||||||||||||         .
.          |||||||||||||||||||||||||||||          .
.           |||||||||||||||||||||||||||           .
.            |||||||||||||||||||||||||            .
.             |||||||||||||||||||||||             .
.              |||||||||||||||||||||              .
.               |||||||||||||||||||               .
.                |||||||||||||||||                .
.                 |||||||||||||||                 .
.                  |||||||||||||                  .
.                   |||||||||||                   .
.                    |||||||||                    .
.                     |||||||                     .
.                      |||||                      .
.                       |||                       .
.                        |                        .