Saved Bookmarks
| 1. |
WAP in JAva to print the following message -hello! |
|
Answer» Jump to Code to print Floyd's triangle · Example 1: Program to print HALF pyramid USING * PUBLIC class Pattern { int rows = 5; for(int i = 1; i <= rows; ++i) { for(int j = 1; j <= i; ++j) { print("* "); } PRINTLN(); } |
|