Software Development Exam  >  Software Development Notes  >  Basics of C++  >  Code: Full Triangle/Pyramid Pattern

Code: Full Triangle/Pyramid Pattern | Basics of C++ - Software Development PDF Download

Code: Full Triangle/Pyramid Pattern | Basics of C++ - Software Development

C++ Program for Full Triangle/Full Pyramid

#include<iostream>


using namespace std;


void PyramidPattern1(int n) {

  for (int i = 1; i <= n; i++) {

    for (int k = n - i; k > 0; k--) {

      cout << " ";

    }

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

      cout << "* ";

    }

    cout << endl;

  }

}

void PyramidPattern2(int n) {

  for (int i = n; i >= 1; i--) {

    for (int k = n - i; k > 0; k--) {

      cout << " ";

    }

    for (int j = i; j > 0; j--) {

      cout << "* ";

    }

    cout << endl;

  }

}


int main() {

  int num;

  cout << "Enter number of levels of the pattern :" << endl;

  cin >> num;

  PyramidPattern1(num);

  cout << endl;

  PyramidPattern2(num);


  return 0;

}

The document Code: Full Triangle/Pyramid Pattern | Basics of C++ - Software Development is a part of the Software Development Course Basics of C++.
All you need of Software Development at this link: Software Development
70 videos|45 docs|15 tests

Top Courses for Software Development

70 videos|45 docs|15 tests
Download as PDF
Explore Courses for Software Development exam

Top Courses for Software Development

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Code: Full Triangle/Pyramid Pattern | Basics of C++ - Software Development

,

Viva Questions

,

Important questions

,

pdf

,

Sample Paper

,

video lectures

,

Code: Full Triangle/Pyramid Pattern | Basics of C++ - Software Development

,

practice quizzes

,

mock tests for examination

,

past year papers

,

Objective type Questions

,

Previous Year Questions with Solutions

,

MCQs

,

shortcuts and tricks

,

ppt

,

Summary

,

Exam

,

Extra Questions

,

Semester Notes

,

study material

,

Code: Full Triangle/Pyramid Pattern | Basics of C++ - Software Development

,

Free

;