Showing posts with label C# programs. Show all posts
Showing posts with label C# programs. Show all posts

Friday, 6 July 2018

Ankit

C# program to generate voucher code

        C# progran to generate voucher code

code:

using System;


namespace  getvoucher
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Your voucher code is:");
            Random rm = new Random();
            for (int j = 1; j <=16;j++ )
            {
             
                int n = rm.Next(1,9);
                Console.Write(n);
                if (j%4==0)
                {
                    if (j == 16)
                    {
                        Console.Write("");
                    }
                    else
                    Console.Write("-");
                }
            }
            Console.ReadKey();
        }
    }
}

The output will be:

Read More

Thursday, 5 July 2018

Ankit

C# Program to find Armstrong number

C# Program to find Armstrong Number

An Armstrong Number is an integer such that the sum of the cubes of its digits is equal to the number itself.

CODE:
1)Finding Armstrong number till 3 digits only
 using System;

namespace armstrongNumber
{
    class Program
    {
        static void Main(string[] args)
        {
            int no,r,sum=0,n=0;
            Console.WriteLine("Enter number\n");
            no = int.Parse(Console.ReadLine());
            n = no;
            while (n > 0)
            {
                r = n % 10;
                n = n / 10;
                sum += r*r*r;
            }

            if (sum == no)
            {
                Console.WriteLine(no+" is a Amstrong number" );
            }
            else
            {
                Console.WriteLine(no+" is not a Amstrong number");
            }
            Console.ReadLine();
         
        }
    }
}

Read More

Monday, 2 July 2018

Ankit

C# program to make short name from fullname of user

 WAP  in C# to make shortname from fullname.

In this program of C# we are going to learn how to make short name from full name of user.
Here we some variables like fullname(to store fullname of user), shorname(to store short name of user), i(to make use of loop), lindex(to store the value of last index from where the space comes)
...................


Read More