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

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++)                 {         ...