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