Angry Birds

Introducing to Linux


Permutation in Cards (C#)

Label: ,

using System; using System.Collections.Generic; using System.Linq; using System.Text; class Program {     class Permutation     {         private void swap(ref char a, ref char b)         {             if (a == b) return;             a ^= b;             b ^= a;    ...

Rolling A Dice in C#

Label: ,

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Dice {     class Program     {         static void Main()         {             F();             F();             F();             F();      ...