logo

C의 지수()

수학의 지수

이는 임의의 상수의 거듭제곱을 계산하는 함수로 설명될 수 있습니다. a는 상수 값인 a^x로 표시할 수 있습니다. 일반적으로 상수 값은 e입니다.

C 프로그래밍의 지수

C 프로그래밍에서는 상수 e의 지수 값을 계산합니다. e는 오일러 수를 나타냅니다. e의 값은 대략 2.71828입니다. exp() 함수는 maths.h 헤더 파일에 정의되어 있습니다. 따라서 만약

C 프로그래밍의 exp() 함수 구문

 Double exp(double parameter); 

exp() 함수의 매개변수

이 함수에는 하나의 매개변수만 필요합니다. 매개변수는 e가 증가할 값을 저장합니다. 지수를 계산할 값은 일정하기 때문입니다.

exp() 함수의 반환 유형

exp() 함수의 반환 유형은 double입니다. 이는 float 또는 숫자 값을 보유할 수 있는 다른 데이터 유형일 수 있습니다.

C 프로그램에서 exp() 함수 구현하기

다음은 C 프로그램에서 exp() 함수를 구현하는 코드입니다.

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

산출:

C의 지수()

지수 값 계산을 위한 사용자 입력

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

산출:

C의 지수()

위의 예에서는 사용자로부터 입력을 받았습니다. 사용자가 값을 입력하면 부동 소수점 값이 될 수 있습니다. 프로그램에서 지수를 계산하는 데 사용되며 변수 결과에 저장됩니다. 마지막 명령문에서는 결과를 인쇄합니다. 정답은 소수점 6자리까지 표시됩니다.