Skip to main content

Posts

Showing posts from August 1, 2014

Lcm of array elemts in c# sharp

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 {     class Program     {         static void Main(string[] args)         {            int n,i,j,max=0,lcm=1,c=0,k=0;             Console.WriteLine("Enter array size");             n=Convert.ToInt32(Console.ReadLine());             int[] arr = new int[n];            Console.WriteLine("Enter array elemrnts");            for (i = 0; i < n; i++)                arr[i] = Convert.ToInt32(Console.ReadLine());            Array.Sort(arr);            max = arr[n - 1];                                      for (k = 2; k <= max; k++)                {                     do                    {                        c = 0;                    for (j = 0; j < n; j++)                    {                        //Console.WriteLine();                        Console.WriteLine(arr[j]);                        if (arr[j] % k == 0)

Simple brute force in c#

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Brute_force {     class Program     {         static void Main(string[] args)         {             String s;             int i, j = 1, c = 1, asc;             Console.WriteLine("ENTER A STRING");                 s=Console.ReadLine();                 s = s.ToUpper();                 Console.WriteLine("brute force attacking ");             for(j=1;j<26;j++)             {                 for (i = 0; i < s.Length; i++)                 {                     asc = (int)s[i];                     if (asc != 32)                     {                         asc = (asc + j);                         if (asc > 90)                             asc -= 26;                     }                      Console.Write("{0}", (char)asc);                                 }                 Console.WriteLine();             }         Console.Read