Thursday, October 20, 2016

Year Level Checker in C#

Hi there in this article I would like to share with you our simple program will ask the user to give the year level where the student is belong to like freshmen, sophomore, juniors and seniors. Using if else statement in C#. I also make sure that if the user gives a letter or special character our program will not crash and inform the user to provide valid input value like a number. I hope you will find my work useful in learning C#  programming. Thank you.

Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com. 

My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com. 


My mobile number here in the Philippines is 09173084360.


Sample Program Outpu




Program Listing


using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace year_level
{
    class year_level
    {
        static void Main(string[] args)
        {
            
            string input;
            int year = 0;
            bool result = false;
    
                while (result == false)
                {
                    Console.Write("\n\n");
                    Console.Write("Year Level Checker ");
                    Console.Write("\n\n");
                    Console.Write("Enter Your Year Level : ");
                    input = Console.ReadLine();
                    result = int.TryParse(input, out year);
                    if (result == false)
                    {
                        Console.Write("\n");
                        Console.Write("Please Enter Numbers Only.");
                    }
                    else if (year == 1)
                    {
                        Console.Write("\n\n");
                        Console.Write("You are belong to Freshment.");
                        break;
                    }
                    else if (year == 2)
                    {
                        Console.Write("\n\n");
                        Console.Write("You are belong to Sophomore.");
                        break;
                    }
                    else if (year == 3)
                    {
                        Console.Write("\n\n");
                        Console.Write("You are belong to Juniors.");
                        break;
                    }
                    else if (year == 4)
                    {
                        Console.Write("\n\n");
                        Console.Write("You are belong to Senior.");
                        break;
                    }
                    else
                    {
                        Console.Write("\n\n");
                        Console.Write("Invalid Year Level. Try Again.");
                        result = false;
                        
                    }

                }
                         
                    Console.Write("\n\n");
                    Console.Write("Thank You For Using This Software.");
                    Console.Write("\n\n");
                    Console.ReadLine();
        }
    }
}

No comments:

Post a Comment