public static void main(String args[]){ String str=""; for(int i=1; i<=20;i++){ str+="*"; System.out.println(str); } }