मराठी

Write the program to display the following pattern: 5 5 5 5 5 4 4 4 4 3 3 3 2 2 1 - Computer Applications

Advertisements
Advertisements

प्रश्न

Write the program to display the following pattern:

5     5     5     5     5
       4     4     4     4
              3     3     3
                     2     2
                            1

थोडक्यात उत्तर

उत्तर

public class Q9e
{ public static void main(String ar[])
{
System.out.println("\n----------------");
k = 0;
for (i = 5; i >= 1; i--)
{
for (p = 0; p < k; p++) // loop to print spaces
System.out.print(" ");
k++;

for(j = i; j >= 1; j--)
System.out.print(i);

System.out.printIn();
}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.1: Nested Loop - EXERCISES [पृष्ठ १४६]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.1 Nested Loop
EXERCISES | Q VI. 9. (e) | पृष्ठ १४६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×