Skip to main content

Posts

Showing posts with the label armstrong number in c# console application

armstrong number in c# console application

Hello everyone, I am going to share the code sample for the  armstrong  number  using c# with c onsole application as given below. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     public class Armstrong     {         static void Main( string [] args)         {             string myStr;             Console .WriteLine( "Enter the number." );             myStr = Console .ReadLine();             int converted = int .Parse(myStr);             int armst...