हिंदी

Write a Programs to Print Following Patterns for N Lines. 5 5 4 5 4 3 5 4 3 2 5 4 3 2 1 - Structured Programming Approach

Advertisements
Advertisements

प्रश्न

Write a programs to print following patterns for N lines.

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

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

उत्तर

Program:

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=1;j<i;j++)
printf(" ");
for(j=5;j>=i;j--)
printf("%d",j);
printf("\n");
}
getch();
}

Output:
                       5
                       5 4
                       5 4 3
                       5 4 3 2
                       5 4 3 2 1

shaalaa.com
Control Structures - Nested Control Structure
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2016-2017 (June) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×