Saved Bookmarks
| 1. |
Write a java program to print the following |
|
Answer» 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 ✌. |
|