Skip to content

Instantly share code, notes, and snippets.

@Glammer
Last active December 31, 2015 16:59
Show Gist options
  • Select an option

  • Save Glammer/8017612 to your computer and use it in GitHub Desktop.

Select an option

Save Glammer/8017612 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main()
{
int a;
a=9;
for (int i=0; i<a;i++){
for (int Cesp=0; Cesp < i ;Cesp++){
cout << '*';
}
cout << i+1 ;
cout <<endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment