Diamond shape programming code with the help of c++
Making diamond πŸ’Ž s

Program for diamond shape πŸ’Ž

Diamond shape programming code with the help of c++
Making diamond πŸ’Ž shape

 

#include <iostream>

using namespace std;

class A {

public:

    void show() {

        cout << β€œDiamond pattern: β€œ;

        for(int sp = 0; sp < 4; sp++) {

            cout << β€œ\n”;

        }

        int a = 7;

        for(int i = 4; i > 0; i–) {

            for(int j = 0; j < i; j++) {

                       cout << ” β€œ;

            }

            for(int l = 0; l < a; l++) {

                if (l == 0|| i== 4 || l==a-1) {

                    cout << β€œπŸ”΄β€;

                }

                else {

                    cout << β€œπŸ’Žβ€;

                }

            }

            cout << endl;

            a += 2;

        }

        int e = 0;

        for(int b = 2; b < 8; b++) {

            for (int c = 0; c < b; c++) {

                cout << ” β€œ;

            }

            for(int d = 11; d > e; d–) {

                if(d == 11 || d == e + 1) {

                    cout << β€œπŸ”΄β€;

                }

                else{

                    cout << β€œπŸ’Žβ€;

                }

            }

            e += 2;

            cout << endl;

        }

        cout << β€œ\n\n\nCreated by Akash\nThanks for watching!πŸ™‚β€;

    }

};

int main() {

    A obj;

    obj.show();

    return 0;

}

Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog must have valued your time and effort of reading.

Take a time to connect our other digital creations such as Instagram , Facebook and Youtube.

πŸ§‘β€πŸ’»πŸ§‘β€πŸ’» Social Media Links of Tech DCode :

πŸ‘‰πŸ» YouTube : https://www.youtube.com/channel/UCjJnEdeugftBwQ3yMuD4B_A

πŸ‘‰πŸ» Instagram : https://www.instagram.com/thetechdcode/

πŸ‘‰πŸ» Facebook Page : https://www.facebook.com/thetechdcode

πŸ‘‰πŸ» Twitter : https://twitter.com/thetechdcode

πŸ‘‰πŸ» Telegram Channel : https://t.me/thetechdcode

πŸ‘‰πŸ» Tech DCode Linktree : https://linktr.ee/thetechdcode

πŸ‘‰πŸ» My Personal Handles : https://linktr.ee/virtualshivamin

πŸ§‘β€πŸ’»πŸ§‘β€πŸ’» Social Media Links of SHIVAM SINGH (OWNER) :

πŸ‘‰πŸ» Instagram : https://www.instagram.com/virtualshivamin/

πŸ‘‰πŸ» Facebook Page : https://www.facebook.com/virtualshivamin/

πŸ‘‰πŸ» Twitter : https://twitter.com/virtualshivamin/

πŸ‘‰πŸ» Personal Linktree : https://linktr.ee/virtualshivamin

Leave a Reply

Your email address will not be published. Required fields are marked *