write a java program to print the following
Attachments:
![](https://hi-static.z-dn.net/files/dc5/a0fc349bec4d154d9b64e919713a6557.jpg)
Answers
Answered by
2
Answer:
public class Pattern {
public static void main(String[] args) {
int rows = 5;
for(int i = 1; i <= rows; ++i) {
for(int j = 1; j <= i; ++j) {
System.out.print(j + " ");
}
System.out.println();
}
}
}
*Hope this will help you. plz give me a thank and follow me ✌.
Similar questions
Math,
7 months ago
Business Studies,
7 months ago
Science,
1 year ago
Geography,
1 year ago
Math,
1 year ago