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. int n=5;
  13. for(int i=1;i<=n;i++)
  14. {
  15. System.out.print("*");
  16. }
  17. System.out.println();
  18. for(int i=1;i<=n;i++)
  19. {
  20. for(int j=1;j<=n;j++)
  21. {
  22. if(j<=2 && j>=4){
  23. System.out.print(" ");
  24. }
  25. }
  26. for(int j=1;j<=n;j++)
  27. {
  28. if(i==3){
  29. System.out.print("e");
  30. }
  31. }
  32. System.out.println();
  33. }
  34. for(int i=1;i<(n-2);i++)
  35. {
  36. for(int j=1;j<=i;j++)
  37. {
  38. System.out.print("s");
  39. }
  40. for(int k=1;k>=n;k--)
  41. {
  42. System.out.print("*");
  43. }
  44. System.out.println();
  45. }
  46.  
  47. }
  48. }
Success #stdin #stdout 0.09s 54652KB
stdin
Standard input is empty
stdout
*****


eeeee


s
ss