logo

Eksponentiaalinen() C:ssä

Eksponentiaalinen matematiikassa

Sitä voidaan kuvata funktiona, joka laskee minkä tahansa vakion tehon. Se voidaan esittää muodossa a^x, jossa a on vakioarvo. Yleensä vakioarvo on e.

Eksponentiaalinen C-ohjelmoinnissa

C-ohjelmoinnissa lasketaan vakion e eksponenttiarvo, e on Eulerin luku. E:n arvo on noin 2,71828. Funktio exp() on määritelty maths.h-otsikkotiedostossa. Joten, jos

C-ohjelmoinnin exp()-funktion syntaksi

 Double exp(double parameter); 

Parametri exp()-funktiolle

Toiminto vaatii vain yhden parametrin. Parametri tallentaa arvon, jolla e:tä nostetaan. Koska arvo, jolle eksponentti on laskettava, on vakio.

Palautustyyppi exp()-funktiolle

Exp()-funktion palautustyyppi on kaksinkertainen. Se voi olla float tai mikä tahansa muu tietotyyppi, joka voi sisältää numeerisen arvon.

Exp()-funktion toteuttaminen C-ohjelmassa

Alla on koodi exp()-funktion toteuttamiseksi C-ohjelmassa.

 //Include the maths header file in the program. #include #include int main() {// Use the exp() function to compute the exponential value for e. printf('The value for e raised to power 0 is = %.6f 
', exp(0)); printf('The value for e raised to power 2 is = %.6f 
', exp(2)); printf('The value for e raised to power 13 is = %.6f 
', exp(13)); printf('The value for e raised to power 12.01 is = %.6f 
', exp(12.01)); printf('The value for e raised to power -1 is = %.6f 
', exp(-1)); printf('The value for e raised to power -3.73 is = %.6f 
', exp(-3.73)); // Using .6f to print the result will return the answer up to 6th decimal place. return 0; } 

Lähtö:

Eksponentiaalinen() C:ssä

Käyttäjän syöte eksponentiaalisen arvon laskemiseen

 //The C Program for raising the power of e by user input //exp() is defined in math.h header file #include #include int main() { float power, result; printf(' Please input the value to raise e : 
'); //take user input scanf('%f', &power); //Store answer result = exp(power); printf('
 The value for e raised to the power %.4f is = %.6f 
', power, result); return 0; } 

Lähtö:

Eksponentiaalinen() C:ssä

Yllä olevassa esimerkissä olemme ottaneet syötteen käyttäjältä. Se voi olla mikä tahansa kelluva arvo, kun käyttäjä on syöttänyt arvon. Sitä käytetään ohjelman eksponentiaalin laskemiseen, ja se tallennetaan muuttujan tulokseen. Viimeisessä lausunnossa tulostamme tuloksen. Vastaus näytetään kuudenteen desimaalin tarkkuudella.