Advertisements
Advertisements
प्रश्न
Write the program to display the following pattern:
5 4 3 2 1
5 4 3 2
5 4 3
5 4
5
थोडक्यात उत्तर
उत्तर
public class Q9h
{ public static void main(String ar[])
{ System.out Println("\n-----------------------");
int i, j;
for (i = 1; i <= 5; i++)
{System.out.println();
for (j = 5; >= i; j--)
System.out.print(j + " ");
}}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.1: Nested Loop - EXERCISES [पृष्ठ १४७]