Armstrong Number in Windows Store App

In this article I explain about Armstrong Numbers. So first of all let us understand what an Armstrong Number is.

An N-digit number that is the sum of the nth Power of its digits is called an Armstrong Number. In other words Armstrong Numbers are the sum of their own digits to the power of the number of digits.

For example: 153; the total number of digits in this number = 3.

Armstrong = 1^3+5^3+3^3=153

Second example: 9474; the total number of digits in this number = 4

Armstrong= 9^4+4^4+7^4+4^4=9474

Now after understanding Armstrong Numbers implement their logic in a Window Store App.

Use the following procedure to create an Armstrong Number app.

Step 1

First of all you have to create a New Windows Store Application, as in:

  • Open Visual Studio 2012
  • "File" -> "New" -> "Project..."
  • Choose Template the "Visual C#" -> "Window Store app"
  • "Blank App (XAML)" then rename the application

new-windows-store-app.jpg

Step 2

Write the following XAML code in "Mainpage.Xaml" that is available in Solution Explorer:

<Page

    x:Class="armstrong_app.MainPage"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:local="using:armstrong_app"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d">

    <Grid Background="Blue">

        <Grid.RowDefinitions>

            <RowDefinition Height="38*"/>

            <RowDefinition Height="23*"/>

            <RowDefinition Height="31*"/>

            <RowDefinition Height="32*"/>

            <RowDefinition Height="35*"/>

            <RowDefinition Height="609*"/>

        </Grid.RowDefinitions>

        <Grid.ColumnDefinitions>

            <ColumnDefinition Width="161*"/>

            <ColumnDefinition Width="298*"/>

            <ColumnDefinition Width="907*"/>

        </Grid.ColumnDefinitions>

        <TextBlock Text="Check Number is Armstrong or not" FontFamily="Arial" FontSize="15" FontWeight="ExtraBold" Foreground="Red" Grid.Column="1" Grid.Row="1" Grid.ColumnSpan="2"></TextBlock>

        <TextBlock Text="Enter Number:" FontFamily="Arial" FontSize="15" FontWeight="ExtraBold" Foreground="Red" Grid.Column="1" Grid.Row="2"></TextBlock>

        <TextBox x:Name="Textbox1" Width="150" Height="32" VerticalAlignment="Top" Grid.Column="2" Grid.Row="2" HorizontalAlignment="Left" Grid.RowSpan="2" />

        <TextBlock Text="Number is:" FontFamily="Arial" FontSize="15" FontWeight="ExtraBold" Foreground="Red" Grid.Column="1" Grid.Row="3"></TextBlock>

        <TextBlock x:Name="text2" FontFamily="Arial" FontSize="15" FontWeight="ExtraBold" Foreground="Red" Grid.Column="2" Grid.Row="3"></TextBlock>

        <Button x:Name="button1" Content="Click" Grid.Row="3" Grid.Column="2" Background="Yellow" Foreground="Red" Width="103" Height="34" FontSize="15" Margin="0,31,0,2" Grid.RowSpan="2" Click="button1_Click"/>

    </Grid>

</Page>

 

Step 3

Now write the following C# code for the button within "Mainpage.Xaml.cs":

using System;

using System.Collections.Generic;

using System.IO;

using System.Linq;

using Windows.Foundation;

using Windows.Foundation.Collections;

using Windows.UI.Xaml;

using Windows.UI.Xaml.Controls;

using Windows.UI.Xaml.Controls.Primitives;

using Windows.UI.Xaml.Data;

using Windows.UI.Xaml.Input;

using Windows.UI.Xaml.Media;

using Windows.UI.Xaml.Navigation;

namespace armstrong_app

{

    public sealed partial class MainPage : Page

    {

        public MainPage()

        {

            this.InitializeComponent();

        }

        protected override void OnNavigatedTo(NavigationEventArgs e)

        {

        }

        private void button1_Click(object sender, RoutedEventArgs e)

        {

            int len = Textbox1.Text.Length;

            int num = Convert.ToInt32(Textbox1.Text);

            double sum = 0;

            int temp=num;

            while (num > 0)

            {

                int r = num % 10;

                num = num / 10;

                sum = sum + Math.Pow(r,len);

            }

            if (temp== sum)

            {

                text2.Text = "Armstrong Number";

            }

            else

            {

                text2.Text = "Not an Armstrong Number";

            }

        }

    }

}

 

Step 4

"Run" your App.

run-armstrong-app.jpg

Step 5

Enter a number into the TextBox for determining whether the number is an Armstrong or not.

Output-of-armstong-app.jpg

Up Next
    Ebook Download
    View all
    Learn
    View all