Skip to content

Instantly share code, notes, and snippets.

@dsouzadyn
Created June 23, 2014 13:45
Show Gist options
  • Select an option

  • Save dsouzadyn/51bd04eede5859f6441c to your computer and use it in GitHub Desktop.

Select an option

Save dsouzadyn/51bd04eede5859f6441c to your computer and use it in GitHub Desktop.
Cpp Pattern
#include <iostream>
using namespace std;
int main(){
for(int a = 1;a <= 5;a++){
for(int b = a; b > 0;b--){
cout<<b<<" ";
}
cout<<endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment