“Diferencia flotante e int” Código de respuesta

Diferencia flotante e int

Intergers and floats both contain numerical data. 
However, intergers (int) is a number without a decimal point.
A float on the other hand, is a number that has a decimal place. 
Random boi

flotante vs doble

float pie = 22/7f;
float pieby4096 = pie/4096;
double dpie = 22/7d;
double dpieby4096 = dpie/4096;
System.out.println("Float Pie is - " + pie);
System.out.println("Double pie is - " + dpie);
System.out.println("Float Pie divided by 4096 - " + pieby4096);
System.out.println("Double Pie divided by 4096 - " + dpieby4096);
double pieby4096usingfloatpie = pie/4096;
System.out.println("Float Pie divided by 4096 with result as double - " + pieby4096usingfloatpie);
Mushy Macaque

Respuestas similares a “Diferencia flotante e int”

Preguntas similares a “Diferencia flotante e int”

Más respuestas relacionadas con “Diferencia flotante e int” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código