हिंदी

Write the program in Java to display the following pattern: 13 15 3 17 5 3 1 9 7 5 3 1 - Computer Applications

Advertisements
Advertisements

प्रश्न

Write the program in Java to display the following pattern:

1
3     1
5     3     1
7     5     3     1 
9     7     5     3     1 

संक्षेप में उत्तर

उत्तर

public class Q9a
{ public static void main(String ar[])
{ int i, j;

for (i = 1; i <= 9; i = i + 2)
{for (j = i; j >= 1; j = j - 2)
System.out.print(j + " ");
System.out.println();
}
}}
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.1: Nested Loop - EXERCISES [पृष्ठ १४६]

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×