Write a program to print following pattern
X
X X
X X X
X X X X
X X X X X
Answers
Answered by
2
Answer:
trigular pattern
Pl fo.llow me
Answered by
1
Answer:
class Pattern17
[
void main (string args[])
[
for (int i=1 ; i<=5 ; i++)
[
for (int j=1 ; j<=i ; j++
[
system.out.print ("*");
]
system.out.println ();
]
]
]
Similar questions
English,
1 month ago
Accountancy,
1 month ago
Social Sciences,
1 month ago
Math,
3 months ago
Math,
3 months ago
English,
10 months ago
Math,
10 months ago
Math,
10 months ago