Basic Programming C# Examples

C# Program to Get the Century from a Year

The Program in C# Program to Get the Century from a Year is given below:

using System;

namespace CenturyFromYear
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello Codeauri Family ,enter a year to find the century of the year: ");
            int year = int.Parse(Console.ReadLine());
            int century = (year + 99) / 100;

            Console.WriteLine("Okay,the century for the year " + year + " is " + century);
            Console.ReadLine();
        }
    }
}

Output:


Enter a year:
2020
The century for the year 2020 is 21

Pro-Tips💡

Here are the step by step execution of above program:

  1. The first line “using System;” imports the System namespace which provides access to various classes and methods, including Console.
  2. In the namespace “CenturyFromYear” the class “Program” is defined.
  3. In the class, the “Main” method is defined, which is the entry point of the program.
  4. The program prompts the user to enter a year. The year entered by the user is stored in the variable “year”.
  5. The century for the year is calculated by adding 99 to the year and dividing by 100. The result is stored in the variable “century”.
  6. The program outputs the message “The century for the year ” + year + ” is ” + century”.
  7. The program waits for the user to press Enter to close the console.

Learn C-Sharp ↗

C-sharp covers every topic to learn about C-Sharp thoroughly.

Learn C Programming ↗

C-Programming covers every topic to learn about C-Sharp thoroughly.

Learn C++ Programming↗

C++ covers every topic to learn about C-Sharp thoroughly.

Codeauri is Code Learning Hub and Community for every Coder to learn Coding by navigating Structurally from Basic Programming to Front-End Development, Back-End Development to Database, and many more.

Related Posts

Programming Languages( Types, Pros and Cons)-Codeauri

What are the types or levels of Programming Languages? The types or levels of programming languages are divided into two types: Types Of Programming Languages: 1.Machine-level Language :1st…

C# Program to Find Sum of Rows & Columns of a Matrix

The Program in C# Program to Find Sum of Rows & Columns of a Matrix is given below: Output: Hello Codeauri Family,enter the number of rows and columns…

C# Program to Calculate Determinant of Given Matrix

The Program in C# Program to Calculate Determinant of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns of the matrix…

C# Program to Find Sum of right Diagonals of a Matrix

The Program in C# Program to Find Sum of right Diagonals of a Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns…

C# Program to Find Transpose of Given Matrix

The Program in C# Program to Find Transpose of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns in the matrix:22Enter…

C# Program for Multiplication of two square Matrices

The Program in C# Program for Multiplication of two square Matrices is given below: Output: Hello Codeauri Family, enter the number of rows/columns in the matrices:2Enter the elements…

Leave a Reply

Your email address will not be published. Required fields are marked *

Your Journey into Code Begins Now: Discover the Wonders of Basic Programming

X