January 2011
Recursion Windows
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private int Expo(int b, int exp) {...
Recursion Console :))
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Recursion_Console_ { class Program { static int fibo(int x) { if (x > 0) { fibo(x - 1); } return 0; } static int Expo(int b, int exp) { if (exp > 1) {...
And I guess you’re proof that when you finally let go of the past, something...
– (via frommyperspective)