Angry Birds

Introducing to Linux


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