fork download
  1. import java.util.*;
  2.  
  3. class Main {
  4. public static void main(String[] args) {
  5. // System.out.println("Try programiz.pro");
  6. Scanner sc = new Scanner(System.in);
  7. int n = sc.nextInt();
  8. if(n%2==0 || n<0){
  9. System.out.print("Incorrect input");
  10. return;
  11. }
  12.  
  13. for(int i=1;i<=n+2;i++){
  14. for(int j=1;j<=n;j++){
  15. if(j==n){
  16. System.out.print("e");
  17. }else if(i==n+2){
  18. System.out.print("*");
  19. }else{
  20. System.out.print(" ");
  21. }
  22. }
  23. for(int k=n+2;k>=1;k--){
  24. if(i==1 && k>=i){
  25. System.out.print("*");
  26. }else if(i==(n+2+1)/2 && k>=i){
  27. System.out.print("*");
  28. }else{
  29. System.out.print(" ");
  30. }
  31. }
  32. System.out.println();
  33. }
  34.  
  35. }
  36. }
Success #stdin #stdout 0.11s 56516KB
stdin
-1
stdout
Incorrect input