List of Software Companies in Coimbatore 2020 - Updated Company Name Website Contact No Email Id ANGLER Technologies India Pvt Ltd www.angleritech.com 9366663935 / 9361663956 hr@angleritech.com CG-VAK Software & Exports Ltd www.cgvakindia.com 04222434491 KGISL-GSS www.kgisl.com/gss 04224419999 gsscareer@kgisl.com Nous Infosystems www.nousinfosystems. com 04224300300 info@nousinfo.com SIERRA ODC Private Ltd www.sierratec.com 04227115566 / 9363220483 info@sierratec.com NDOT Technologies Pvt Ltd www.ndot.in 04222970042 contactus@ndot.in Pinnacle Seven Technologies pinnacleseven.com 04224506535 contact@pinnacleseven.com Shloklabs www.shloklabs.com 04222970021 info@shloklabs.com Fireball Technologies www.fireballtech.in 04222565673 info@fireballtech.in Payoda Technology Inc www.payoda.com 04...
using System; namespace Prg2ConsoleApplication9 { class ArmstrongNumber { static void Main(string[] args) { number num = new number(); num.getdata(); } } class number { public void getdata() { int no,r,sum=0,n=0; Console.WriteLine("Enter number\n"); no = Int32.Parse(Console.ReadLine()); n = no; while (n > 0) { r = n % 10; n = n / 10; sum += r*r*r; } if (sum == no) { Console.WriteLine("{0} is a Amstrong number" , no); } else { Console.WriteLine("{0} is not a Amstrong number", no); } Console.ReadLine(); } } } If you want to add any additional points or if you find any discrepancies in this article pleas...