C#DOTNETCONSOLEAPPLICATION

EXCEPTION

 using System;

using System.Collections.Generic;

using System.IO;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace ConsoleApplication24

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.Write("Please enter a number to divide 100: ");


            try

            {

                int num = int.Parse(Console.ReadLine());


                int result = 100 / num;


                Console.WriteLine("100 / {0} = {1}", num, result);

            }

            catch (DivideByZeroException ex)

            {

                Console.Write(ex);

            }

            catch (InvalidOperationException ex)

            {

                Console.Write(ex);

            }

            catch (FormatException ex)

            {

                Console.Write(ex);

            }

            catch (Exception ex)

            {

                Console.Write(ex);

            }

            Console.ReadKey();

        }


        }

    }

No comments:

Post a Comment

Techzmatrix