fork(1) 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. Scanner sc=new Scanner(System.in);
  13. int n=sc.nextInt();
  14. for(int i=0;i<((n+2));i++){
  15. System.out.print("e");
  16. }
  17. System.out.println();
  18. int space=n/2;
  19. for(int i=0;i<=(n/2);i++){
  20. for(int j=0;j<((n+2)/2)-1;j++){
  21. System.out.print(" ");
  22. }
  23. for(int j=space;j>0;j--){
  24. System.out.print(" ");
  25. }
  26. for(int j=0;j<=i;j++){
  27. System.out.print("*");
  28. }
  29. for(int j=0;j<=i;j++){
  30. if(j==0){
  31.  
  32. }else{
  33. System.out.print("*");
  34. }
  35. }
  36.  
  37. space--;
  38. System.out.println();
  39. }
  40. }
  41. }
Success #stdin #stdout 0.14s 56720KB
stdin
5
stdout
eeeeeee
    *
   ***
  *****