Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~93 People Reached
Favorite Forums
Member Avatar for Salma_1

#include<iostream> using namespace std; int main() { int testcases,freq,amplituide; cin>>testcases; for(int i=1;i<=testcases;i++) { cin>>amplituide>>freq; for(int x=1;x<=freq;x++) { for(int j=1;j<=amplituide;j++) { cout<<endl; for(int jj=j;jj>=1;jj--) cout<<j; } for(int k=(amplituide-1);k>=1;k--) { cout<<endl; for(int kk=k;kk>=1;kk--) cout<<k; } if(x<freq) cout<<endl<<endl; } } return 0; } Inline Code Example Here

Member Avatar for Salma_1
0
93