Convertir Int a Float en C#
Esta guía nos enseñará a convertir un int
en un float
en C#. Se puede hacer simplemente por fundición.
Podemos convertir fácilmente un int
en un float
o decimal
usando el método de encasillamiento. Vamos a ver.
Convertir Int
a Float
en C#
Podemos usar la conversión de tipos para convertir un int
en float
. Escribiendo (float)
detrás de la variable int
.
Por ejemplo, si su variable int
es temp_int
, para convertir el valor interior en un valor float
, todo lo que necesita hacer es escribir (float)temp_int
. Echa un vistazo al siguiente código.
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 salida del código se da a continuación.
output:
INT TO FLOAT= 1
FLOAT TO DECIMAL= 3
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