Aish WithOut Cash
Write a program with L shape triangle pattern
*
* *
* * *
public class task1 {
public static void main(String[] args) {
for(int i=1;i<=3;i++) {
for(int j=1;j<=i; j++) {
System.out.print("*");
}
System.out.print("\n");
}
}
}
Newer Post
Older Post
Home
LinkWithin