Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     OjasConsole.ShowLine("welcome to ojas");
     OjasConsole.ShowLine("Hi this is .net Traiining");
     new OjasConsole().DisplayLine("Hi Guys");
     new OjasConsole().DisplayLine("Good evening");
     Console.WriteLine(new CheckNums().Reverse(123));
     Console.WriteLine(new CheckNums().IsPalindrome(123));
     Console.WriteLine(new CheckNums().IsPalindrome(121));
     new OILC102().ShowResult();
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            OjasConsole.Show("hi this is my Show");
            OjasConsole.ShowLine("hi this is my Show Line");
            OjasConsole ojas = new OjasConsole();

            ojas.Display("hi this is my Display");
            ojas.DisplayLine("hi this is my Display Line");
            NumberSet n1 = new NumberSet();

            n1.IsPerfect(6);
        }