Software Development Exam  >  Software Development Notes  >  Basics of C++  >  Code: Incremental Numbers

Code: Incremental Numbers | Basics of C++ - Software Development PDF Download

Code: Incremental Numbers | Basics of C++ - Software Development

C++ Program for printing 6 different Triangle/Half Pyramid Programs with Incremental Numbers

#include<iostream>

using namespace std;

void halfPyramidNumbers1(int n) {

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

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

      cout << i;

    }

    cout << endl;

  }

}

void halfPyramidNumbers2(int n) {

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

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

      cout << (n - i + 1);

    }

    cout << endl;

  }

}

void halfPyramidNumbers3(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 << i;

    }

    cout << endl;

  }

}

void halfPyramidNumbers4(int n) {

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

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

      cout << " ";

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

      cout << (n - i + 1);

    }

    cout << endl;

  }

}

void halfPyramidNumbers5(int n) {

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

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

      cout << j;

    }

    cout << endl;

  }

}

void halfPyramidNumbers6(int n) {

  int x = 1;

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

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

      cout << x++ << " ";

    }

    cout << endl;

  }

}

int main() {

  int num;

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

  cin >> num;

  halfPyramidNumbers1(num);

  cout << endl;

  halfPyramidNumbers2(num);

  cout << endl;

  halfPyramidNumbers3(num);

  cout << endl;

  halfPyramidNumbers4(num);

  cout << endl;

  halfPyramidNumbers5(num);

  cout << endl;

  halfPyramidNumbers6(num);

  return 0;

}

The document Code: Incremental Numbers | 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

Semester Notes

,

past year papers

,

Code: Incremental Numbers | Basics of C++ - Software Development

,

study material

,

Code: Incremental Numbers | Basics of C++ - Software Development

,

Sample Paper

,

Summary

,

mock tests for examination

,

Previous Year Questions with Solutions

,

Viva Questions

,

ppt

,

Code: Incremental Numbers | Basics of C++ - Software Development

,

Extra Questions

,

pdf

,

MCQs

,

Objective type Questions

,

practice quizzes

,

Important questions

,

Free

,

Exam

,

shortcuts and tricks

,

video lectures

;