Math functions in action : Math Function « Development « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » Development » Math Function 
14. 13. 3. Math functions in action
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
using System.Security.Cryptography;

public class MainClass
{
    public static void Main()
    {
        Console.WriteLine("Abs({0}) = {1}", -55, Math.Abs(-55));
        Console.WriteLine("Ceiling({0}) = {1}"55.3, Math.Ceiling(55.3));
        Console.WriteLine("Pow({0},{1}) = {2}"10.53, Math.Pow(10.53));
        Console.WriteLine("Round({0},{1}) = {2}",10.553582, Math.Round(10.553582));
        Console.WriteLine("Sin({0}) = {1}"323.333, Math.Sin(323.333));
        Console.WriteLine("Cos({0}) = {1}"323.333, Math.Cos(323.333));
        Console.WriteLine("Tan({0}) = {1}"323.333, Math.Tan(323.333));
    }
}
Abs(-55) = 55
Ceiling(55.3) = 56
Pow(10.5,3) = 1157.625
Round(10.55358,2) = 10.55
Sin(323.333) = 0.248414709883854
Cos(323.333) = -0.968653772982546
Tan(323.333) = -0.256453561440193
14. 13. Math Function
14. 13. 1. Math defines several standard mathematical operations.
14. 13. 2. The Methods Defined by Math
14. 13. 3. Math functions in action
14. 13. 4. Math.Sin()
14. 13. 5. Calculate the radius of a circle given its area using Math function
14. 13. 6. Math.Cos()
14. 13. 7. Math.Tan()
w_ww___.___jav_a2___s___.___c___o_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.