logo

C'de üstel()

Matematikte üstel

Herhangi bir sabitin gücünü hesaplayan fonksiyon olarak tanımlanabilir. a'nın sabit bir değer olduğu a^x olarak temsil edilebilir. Genellikle sabit değer e'dir.

C Programlamada Üstel

C programlamada, e sabitinin üstel değerini hesaplarız; e, Euler sayısını temsil eder. e'nin değeri yaklaşık 2,71828'dir. exp() işlevi maths.h başlık dosyasında tanımlanmıştır. Yani eğer

C Programlamada exp() fonksiyonunun sözdizimi

 Double exp(double parameter); 

exp() işlevi için parametre

Fonksiyon yalnızca bir parametre gerektirir. Parametre, e'nin yükseltileceği değeri saklar. Üssün hesaplanacağı değer sabit olduğundan.

exp() işlevi için Dönüş Türü

exp() işlevinin dönüş türü double'dır. Float veya sayısal değeri tutabilen başka bir veri türü olabilir.

C Programında exp() fonksiyonunun uygulanması

C Programında exp() fonksiyonunu uygulayacak kod aşağıdadır.

 //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; } 

Çıktı:

C'de üstel()

Üstel Değerin Hesaplanması için Kullanıcı Girişi

 //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; } 

Çıktı:

C'de üstel()

Yukarıdaki örnekte kullanıcıdan girdi aldık. Kullanıcı değeri girdikten sonra herhangi bir değişken değer olabilir. Programdaki üstel sayıyı hesaplamak için kullanılacak ve sonuç değişkeninde saklanacaktır. Son ifadede sonucu yazdıracağız. Cevap altıncı ondalık basamağa kadar görüntülenecektir.