*
**
***
****
*****
******
*******
public class Test4 {
public void myPoint(int n){
for(int i=0;i<=n;i++){
for(int j=0;j<i+1;j++){System.out.print("*");}
System.out.println();
}
}
public static void main(String[] args) {
Test4 test4 =new Test4();
test4.myPoint(10);
}
}