belongs to collection: Example of Pattern Programs in C++ Programming
AB CD E FG H I JK L M N O
#include<iostream> using namespace std; int main() { int i,j,n; cout<<"Enter the No Of Row\n"; cin>>n; char c='A'; for(i=0;i<n;i++) { for(j=0;j<=i;j++) { if(c=='Z') break; cout<<c; c++; } cout<<"\n"; } return 0; }
Output:
Enter the No of Row
6
A
BC
DEF
GHIJ
KLMNO
PQRSTU
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
Enter the No of Row
6
A
BC
DEF
GHIJ
KLMNO
PQRSTU
need an explanation for this answer? contact us directly to get an explanation for this answer