हिंदी

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

Advertisements
Advertisements

प्रश्न

Write a program to print following patterns for N lines.

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

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

उत्तर

Program:

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

Output:
5 4 3 2 *
5 4 3 * 1
5 4 * 2 1
5 * 3 2 1
* 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×