Obtener el número total de días en un mes usando declaraciones If-else y Switch en C#

N imprime el número de días en el Mes N .

Ejemplos:

Entrada: N = 12
Salida: 31

Entrada: N = 2
Salida: 28/29

Esta tarea se puede realizar utilizando los siguientes enfoques:

1.

Month = [1, 3, 5, 7, 8, 10, 12] , Number of days = 31
Month = [2] , Number of days = 28/29
Month = [4, 6, 9, 11] , Number of days = 30

Producción:

C#

// C# Program to Print Number of Days
// in a Month using Else If Statement
  
using System;
  
public class GFG{
  
    // Function to print the Number
    // of Days in a N
    static void PrintNumberofDays(int N) 
    {
       // Check for the Ns
        if (N == 1 || N == 3 || N == 5 || N == 7
          || N == 8 || N == 10 || N == 12) {
              Console.Write("31");
        } 
          
        else if (N == 4 || N == 6 || N == 9 ||
               N == 11) {
               Console.Write("30");
        } 
          
        else if (N == 2) {
               Console.Write("28/29");
        }
    }
      
    // Driver Code
    static public void Main ()
    {
        int N = 5; // 1 <= N <= 12
        PrintNumberofDays(N);
    }
}

Producción:

31

2. Uso de la condición del interruptor

C#

// C# Program to Print Number of Days
// in a Month using Switch Condition
  
using System;
  
public class GFG{
  
    // Function to print the Number
    // of Days in a N
    static void PrintNumberofDays(int N) 
    {
        // Check for the N
        switch(N )
        {
            case 1:
            case 3:
            case 5:     
            case 7:
            case 8:
            case 10:
            case 12:             
                Console.Write("31");
                break;
              
            case 4: 
            case 6:
            case 9:
            case 11:                 
                Console.Write("30"); 
                break;
              
            case 2:
            Console.Write("28/29");
            break;
        }
    }
      
    // Driver Code
    static public void Main ()
    {
        int N = 5; // 1 <= N <= 12
        PrintNumberofDays(N);
    }
}

Producción:

31

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *