Convertir Int en Float en C#

Haider Ali 12 octobre 2023
Convertir Int en Float en C#

Ce guide nous apprendra à convertir un int en un float en C#. Cela peut se faire simplement par moulage.

Nous pouvons facilement convertir un int en un float ou decimal en utilisant la méthode de transtypage. Nous allons jeter un coup d’oeil.

Convertir Int en Float en C#

On peut utiliser le casting de type pour convertir un int en float. En écrivant (float) derrière la variable int.

Par exemple, si votre variable int est temp_int, pour convertir la valeur à l’intérieur en une valeur float, il vous suffit d’écrire (float)temp_int. Jetez un oeil au code suivant.

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

namespace Int_to_Float {
  class Program {
    static void Main(string[] args) {
      // using type cast we can convert INT TO FLOAT OR DECIMAL...........
      int temp_int = 1;
      float temp_float = (float)temp_int;
      decimal temp_decimal = 3;
      float temp_float_decimal = (float)temp_decimal;
      Console.WriteLine("INT TO FLOAT= " + temp_float);
      Console.WriteLine("FLOAT TO DECIMAL= " + temp_float_decimal);

      Console.ReadKey();
    }
  }
}

La sortie du code est donnée ci-dessous.

output:
INT TO FLOAT= 1
FLOAT TO DECIMAL= 3
Auteur: Haider Ali
Haider Ali avatar Haider Ali avatar

Haider specializes in technical writing. He has a solid background in computer science that allows him to create engaging, original, and compelling technical tutorials. In his free time, he enjoys adding new skills to his repertoire and watching Netflix.

LinkedIn

Article connexe - Csharp Int

Article connexe - Csharp Float