[ create a new paste ] login | about

Link: http://codepad.org/NWJFm3lq    [ raw code | output | fork ]

outoftime - C++, pasted on Dec 19:
1
2
3
4
5
6
7
8
9
#include <iostream>
#include <string>

int main()
{
   string s = " **\n* *\n***\n* *";
   std::cout << s << std::endl;
   return 0;
}


Output:
1
2
3
4
 **
* *
***
* *


Create a new paste based on this one


Comments: