Método Decimal.Ceiling() en C#

Este método se usa para redondear el decimal al entero más cercano hacia el infinito positivo.

Sintaxis: Techo decimal estático público (d decimal);
Aquí d es el decimal cuyo valor máximo se va a calcular.

Valor devuelto: Devuelve el valor integral más pequeño que es mayor o igual que el parámetro d . Tenga en cuenta que este método devuelve un tipo Decimal en lugar de un tipo integral.

Los siguientes programas ilustran el uso del método Decimal.Ceiling(Decimal) :

Ejemplo 1:

// C# program to demonstrate the
// Decimal.Ceiling(Decimal) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring the decimal variable
        Decimal a = 4.01m;
  
        // finding the ceiling of 
        // the Decimal value
        // using ceiling() method;
        Decimal value = Decimal.Ceiling(a);
  
        // Display the ceiling
        Console.WriteLine("Ceiling Value is : {0}",
                                            value);
    }
}
Producción:

Ceiling Value is : 5

Ejemplo 2:

// C# program to demonstrate the
// Decimal.Ceiling(Decimal) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring the decimal variable
        Decimal a = -5.03m;
  
        // finding the Ceiling of
        // the Decimal value
        // using Ceiling() method;
        Decimal value = Decimal.Ceiling(a);
  
        // Display the Ceiling
        Console.WriteLine("Ceiling Value is : {0}",
                                            value);
    }
}
Producción:

Ceiling Value is : -5

Ejemplo 3:

// C# program to demonstrate the
// Decimal.Ceiling(Decimal) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring the decimal variable
        Decimal a = 2.00m;
  
        // finding the Ceiling of
        // the Decimal value
        // using Ceiling() method;
        Decimal value = Decimal.Ceiling(a);
  
        // Display the Ceiling
        Console.WriteLine("Ceiling Value is : {0}",
                                            value);
    }
}
Producción:

Ceiling Value is : 2

Publicación traducida automáticamente

Artículo escrito por IshwarGupta 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 *