fork download
  1. class Start{
  2. public static void main(String[] args){
  3. Start selfObj = new Start();
  4. selfObj.printWords(5);
  5. }
  6.  
  7. private void printWords(int lines){
  8. for(int i=0; i < lines; i++){
  9. for(int x=0; x < lines - i; x++){
  10. System.out.print("Smile!");
  11. }
  12. System.out.print("\n");
  13. }
  14. }
  15. }
  16.  
Success #stdin #stdout 0.1s 320512KB
stdin
Standard input is empty
stdout
Smile!Smile!Smile!Smile!Smile!
Smile!Smile!Smile!Smile!
Smile!Smile!Smile!
Smile!Smile!
Smile!