Angry Birds

Introducing to Linux


Very Sweet Twenty :* (February 1st, 2014, Celebrate)

Label:

Alhamdulillahirabbil'alamin        Ku ucapkan terimakasih kpda Allah SWT yang telah memberikan ku umur sampai saat ini. Smoga dengan brtmbahnya umur ini, brtmbah pula keimanan dan ketaqwaan ku terhadap-Mu ya Allah..         Trimakasih ku utk Ibu dan Ayah yang...

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();      ...

Summery Constractor, Destructor, and Polymorphism

Label:

Summary Constractor n Destructor - A constructor is used to initialize the members of the class. - There are two types of constructors, instance constructors and static constructors. - Instance constructors are used to initialize data members of the class. - Static constructors are used to initialize the static variables of a class. - Destructors are used to release the instance of a class from memory. - Garbage collection is a process that automatically...

Triangle's Formula Using Java

Label: ,

Now, I wanna tell you how to find the value of triangle side. Hmm.. Maybe I'm not good in math, but I always try to find it as long as I can. So, if you find any wrong in my syntax, please put your comment. Hehe.. Here is the syntax... Lets check it out! package chacam.main; public class...

A Simple Calculator Using C#

Label: ,

This time, I wanna share the the syntax to make a simple calculator using C#. Here it is..! using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Calculator {     class Calculating     {         int Number1, Number2;  ...