Section courante

A propos

Section administrative du site

Exp

Exposant
  Math
C# (C Sharp) System

Syntaxe

static double Exp(double d)

Paramètres

Nom Description
d Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter.

Description

Cette méthode calcul l'exponentiel de la valeur spécifié.

Exemple

Voici un exemple permet d'afficher les exposants inférieurs à 2 :

Essayer maintenant !
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace exp
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             for (double I = 0; I <= 2.0; I += 0.1)
  13.             {
  14.                 Console.WriteLine("Exp(" + (double)I + ")=" + Math.Exp(I));
  15.             } 
  16.         }
  17.     }
  18. }

on obtiendra le résultat suivant :

Exp(0)=1
Exp(0.1)=1.1051709180756477
Exp(0.2)=1.2214027581601699
Exp(0.3)=1.3498588075760032
Exp(0.4)=1.4918246976412703
Exp(0.5)=1.6487212707001282
Exp(0.6)=1.8221188003905089
Exp(0.7)=2.0137527074704766
Exp(0.8)=2.4596031111569494
Exp(0.9)=2.718281828459045
Exp(1.0)=3.0041660239464325
Exp(1.2)=3.3201169227365472
Exp(1.3)=3.6692966676192444
Exp(1.4)=4.055199966844675
Exp(1.5)=4.481689070338065
Exp(1.6)=4.953032424395117
Exp(1.7)=5.473947391727202
Exp(1.8)=6.049647464412949
Exp(1.9)=6.685894442279273

Voir également

Langage de programmation - JavaScript- Référence des classes - Math - exp
Langage de programmation - Java - Référence des classes (JFC) - Math

Dernière mise à jour : Mardi, le 26 janvier 2016