using System;
public class MathTest
{
public static void Main( string[] args )
Console.WriteLine( "Math.Abs( 23.7 ) = " Math.Abs( 23.7 ) );
Console.WriteLine( "Math.Abs( 0.0 ) = " Math.Abs( 0.0 ) );
Console.WriteLine( "Math.Abs( -23.7 ) = " Math.Abs( -23.7 ) );
Console.WriteLine( "Math.Ceiling( 9.2 ) = " Math.Ceiling( 9.2 ) );
Console.WriteLine( "Math.Ceiling( -9.8 ) = " Math.Ceiling( -9.8 ) );
Console.WriteLine( "Math.Cos( 0.0 ) = " Math.Cos( 0.0 ) );
Console.WriteLine( "Math.Exp( 1.0 ) = " Math.Exp( 1.0 ) );
Console.WriteLine( "Math.Exp( 2.0 ) = " Math.Exp( 2.0 ) );
Console.WriteLine( "Math.Floor( 9.2 ) = " Math.Floor( ) );
Console.WriteLine( "Math.Floor( -9.8 ) = " Math.Floor( -9.8 ) );
Console.WriteLine( "Math.Log( 2.718282 ) = " Math.Log( 2.718282 ) );
Console.WriteLine( "Math.Log( 7.389056 ) = " Math.Log( 7.389056
Console.WriteLine( "Math.Max( 2.3, 12.7 ) = " Math.Max( 2.3 ) );
Console.WriteLine( "Math.Max( -2.3, -12.7 ) = " Math.Max( -2.3-12.7 ) );
Console.WriteLine( "Math.Min( 2.3, 12.7 ) = " Math.Min( 2.3 ) );
Console.WriteLine( "Math.Min( -2.3, -12.7 ) = " Math.Min( -2.3-12.7 ) );
Console.WriteLine( "Math.Pow( 2, 7 ) = " Math.Pow( ) );
Console.WriteLine( "Math.Pow( 9, .5 ) = " Math.Pow( ) );
Console.WriteLine( "Math.Sin( 0.0 ) = " Math.Sin( 0.0 ) );
Console.WriteLine( "Math.Sqrt( 25.0 ) = " Math.Sqrt( ) );
Console.WriteLine( "Math.Tan( 0.0 ) = " Math.Tan( 0.0 ) );
}
Arkadaşlar burada console uygulaması verdim. Burada matematiksel
fonksiyonlara örnek olarak bazı örnekler yapılmış. Bunlar
uyguladığımızda ve console application’u çalıştırdığımızda sonuç söyle
olmalıdır;
Math.Abs( 23.7 ) = 23.7
Math.Abs( 0.0 ) = 0
Math.Abs( -23.7 ) = 23.7
Math.Ceiling( 9.2 ) = 10
Math.Ceiling( -9.8 ) = -9
Math.Cos( 0.0 ) = 1
Math.Exp( 1.0 ) = 2.71828
Math.Exp( 2.0 ) = 7.38906
Math.Floor( 9.2 ) = 9
Math.Floor( -9.8 ) = -10
Math.Log( 2.718282 ) = 1
Math.Log( 7.389056 ) = 2
Math.Max( 2.3, 12.7 ) = 12.7
Math.Max( -2.3, -12.7 ) = -2.3
Math.Min( 2.3, 12.7 ) = 2.3
Math.Min( -2.3, -12.7 ) = -12.7
Math.Pow( 2, 7 ) = 128
Math.Pow( 9, .5 ) = 3
Math.Sin( 0.0 ) = 0
Math.Sqrt( 25.0 ) = 5
Math.Tan( 0.0 ) = 0
Tabiki bu fonksiyonları win uygulamamalarında da aynı şekilde uygulayabiliriz.