Diamond pattern

C program to Display diamond number pattern using while loop

C program to Display diamond number pattern using while loop

In this tutorial, we will discuss the concept of the C program to Display diamond number pattern using while loop

In this post, we will learn how to make different diamond number pattern using while loop in C language

 

We can use for loop, while loop or do while loop to display different diamond Number patterns.

Here, we will use while loop to print diamond Number patterns in C language.

 

The following C program requests the user to enter the number of rows as the user wanted and the program will display the number of rows in diamond number pattern according to the user input

 

Program 1

diamond number pattern 1

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int rows;
    printf("Enter the number of rows: ");
    scanf("%d",&rows);
    int row=1,i,j,k;
i=1;
while(i<=rows){    //print upper part
    for(j=1; j<=rows-i; j++){
      printf(" ");//print space
}
k=1;
while(k<=i){
      printf("%d",k);//print number to upper part
      printf(" ");
       k++;
}
printf("\n");
 i++;
}

i=1;
while(i<=rows-1){  //print lower part
        j=1;
    while(j<=i){
      printf(" ");//print space
 j++;
}

k=1;
while(k<=rows-i){
      printf("%d",k);//print num ber to lower part
      printf(" ");
       k++;
}
printf("\n");//move to next line
 i++;
        }
getch();
return 0;
    }

When the above code is executed, it produces the following result

 

Enter the number of rows: 6
         1
       1  2
     1  2  3
   1  2  3  4
  1  2  3  4  5
1  2  3  4  5  6
  1  2  3  4  5
    1  2  3  4
      1  2  3 
        1  2
          1

 

Program 2

diamond number pattern 2

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int i,j,k,l,rows;
    printf("|Enter the number of rows");
    scanf("%d",&rows);
    i=1;
    while(i<=rows){    //print upper part
            j=1;
    while(j<=rows-i){
      printf(" ");//print initial space for upper part
     j++;
}
k=i;
while(k>=1){
      printf("%d",k);
       k--;
}
l=2;
while(l<=i){
      printf("%d",l);
       l++;
}
printf("\n");
 i++;
}

i=rows-1;
while(i>=1){  //print lower part
        j=0;
     while(j<=rows-1-i){
     printf(" ");//print initial space for lower part
 j++;
}
k=i;
while(k>=1){
      printf("%d",k);
       k--;
}
l=2;
while(l<=i){
      printf("%d",l);
       l++;
}
printf("\n");
 i--;
        }
    return 0;
}

 

When the above code is executed, it produces the following result

Enter the number of rows: 6
          1
        212
      32123
    4321234
  543212345
65432123456
  543212345
    4321234
      32123
        212
          1

 

Program 3

diamond number pattern 3

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int rows,i,j;
    int row=1;
   printf("Enter the number of rows: ");
scanf("%d",&rows);
i=rows/2;
while(i>0){    //print upper part
        j=1;
    while(j<=i){
      printf(" ");
 j++;
}
j=1;
while(j<=row){
      printf("%d",row);
      printf(" ");
       j++;
}
printf("\n");
row++;
 i--;
}

i=0;
while(i<=rows/2){
        j=1;
  while(j<=i){
      printf(" ");
 j++;
}

j=row;
while(j>=1){  //print lower part
      printf("%d",row);
      printf(" ");
       j--;
}
printf("\n");
row--;
 i++;
        }
        getch();
    return 0;
}

 

When the above code is executed, it produces the following result

Enter the number of rows: 8
        
             1
          2   2
       3   3   3
     4  4   4   4
  5  5   5   5   5
     4  4   4   4  
       3   3   3
          2   2
             1

 

Similar post

Java program to Display diamond number pattern using while loop

C++  code to Display diamond number pattern using while loop

Floyd’s triangle number pattern using for loop in C

Floyd’s triangle pattern using nested for loop in Java

Floyd’s triangle pattern using nested while loop in Java

Hollow pyramid triangle pattern in C++ language

Pyramid star pattern in Cpp

Pyramid star pattern in C

Pyramid star pattern in Java 

Rhombus pattern in Java using for loop

Rhombus pattern in C using while loop

Rhombus pattern in C++ using do-while loop

Display Pyramid star pattern in C

Display Pyramid star pattern  in Java

Parallelogram and Hollow Parallelogram star pattern in Java

Parallelogram and Hollow Parallelogram star pattern in C Language

C++ program to Display diamond number pattern using while loop

C  program to Display diamond number pattern using while loop

 

Suggested post

For loop in C++ language

For loop in Java language

For loop in C language

For loop in Python language

while loop in C++ language

while loop in Java language

while loop in C language

while loop in Python language

Nested for loop in Java language

Nested for loop in C++ language

Nested for loop in C language

Nested for loop in Python language

 

If statements in Java  language

Nested if statements in Java  language

 

Operator in Java language

Data type in Java language

while loop in Java language

Nested while loop in Java language

Operator in C language

Data type in C  language

variable in C  language

while loop in C language

Nested while loop in C language

 

 

 

Cpp program to Display diamond number pattern using while loop
Java program to Display diamond number pattern using while loop
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago