Don’t worry, unlock all articles / blogs on PrepInsta by just simply logging in on our website
Notifications Mark All Read
Test Notification
NNN Sale is live now. Get 80% off, Use Coupon Code NNN
October 11, 2019
Ques. Programming Pattern to Print 2*N Number of rows for input Pattern?
#include <iostream>
using namespace std;
int main(){ int n=4,num=n-1; for(int i=1;i<=n;i++) { for(int j=1;j<=i;j++) cout<<num; num++; cout<<endl; } num–; for(int i=n;i>=1;i–) { for(int j=1;j<=i;j++) cout<<num; num–; cout<<endl; } return 0;
}
Please do comment the code in other languages :).
For AMCAT Programming – Coding Questions Visit our AMCAT Previous Coding Dashboard
Login/Signup to comment
Get Hiring Updates right in your inbox from PrepInsta
Login/Signup to comment