Using Floats : float « Data Types « C# / C Sharp






Using Floats

   
/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 * Version: 1
 */
using System;

namespace Client.Chapter_1___Common_Type_System
{
  public class UsingFloatsChapter_1___Common_Type_System {
    static void Main(string[] args)
    {
      float MyFloat = 3.281f;
      double MyDouble = 5E-02;
    }
  }
}

           
         
    
    
  








Related examples in the same category

1.Format a float number in ToString method
2.Int and float valueInt and float value
3.Format float as decimal
4.Output float number as currency
5.Format float number as scientific notation
6.Format float point value as fixed point
7.Use general format to output a float point value
8.Output float point as Hexadecimal
9.Round trip float point value
10.Format float as percent value
11.Format float point value as number
12.Single.Epsilon Field: Represents the smallest positive Single value that is greater than zero.
13.Tests whether two float/double values are equal, within an acceptable margin of difference.