Int and float value : float « Data Types « C# / C Sharp






Int and float value

Int and float value
   
/*
Learning C# 
by Jesse Liberty

Publisher: O'Reilly 
ISBN: 0596003765
*/

 using System;

 public class IntFloatTester
 {
     public static void Main()
     {
         int smallInt = 5;
         int largeInt = 12;
         int intQuotient;
         intQuotient = largeInt / smallInt;
         Console.WriteLine("Dividing integers. {0} / {1} = {2}",
             largeInt, smallInt, intQuotient);

         float smallFloat = 5;
         float largeFloat = 12;
         float FloatQuotient;
         FloatQuotient = largeFloat / smallFloat;
         Console.WriteLine("Dividing floats. {0} / {1} = {2}",
             largeFloat, smallFloat, FloatQuotient);

     }
 }
           
         
    
    
  








Related examples in the same category

1.Format a float number in ToString method
2.Using Floats
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.