3 Level Nested for loop in C++ (C Plus Plus)
In this tutorial, we will learn the three-level nester for loop program in C++ (C Plus Plus).
#include<iostream> using namespace std; int main() { int outer, innermost, s; for(outer=5; outer>=1; outer--) { for(s=1; s<=5-outer; s++) cout<<" "; for (innermost=1; innermost<=outer; innermost++) { cout<<"*"; } cout<<endl; } }
Output