logo

C の abs() 関数

このトピックでは、C プログラミング言語の abs 関数について説明します。 abs () 関数は、指定された整数の絶対値を返す、stdlib.h ヘッダー ファイル内の事前定義された関数です。したがって、指定された数値の絶対値を返したい場合は、次のように実装する必要があります。 stdlib.h C プログラムのヘッダー ファイル。 abs() 関数は正の数値のみを返します。例: 整数値 -5 があり、絶対数を取得したいとします。abs() 関数を使用して正の数値を 5 として返します。さらに、任意の正の数値を渡すと、同じ数値が返されます。 。

C の abs() 関数

構文

 int abs (int x); 

上記の構文では、x は負または正の数値を保持する整数データ型であり、関数が整数データ型であるため、正の値を返すために abs() 関数に渡されます。

注: abs() 関数は、指定された数値が負または正の場合でも、常に正の数値を返します。

abs() 関数を使用して数値の絶対値を取得するプログラム

C プログラムで abs() 関数を使用して絶対数を出力する例を考えてみましょう。

プログレッシブ

 #include #include // use stdlib.h header file to use abs() function. int main() { int num, n; // declare the local variable printf (' Enter a number to display the absolute value: '); scanf ('%d', &num); /* define the abs() function to convert the given number into the absolute value. */ n = abs (num); printf ('
 The absolute value of %d is %d. ', num, n); return 0; } 

出力

 Enter a number to display the absolute value: -35 The absolute value of -35 is 35. 

abs() 関数を使用して指定された整数の絶対値を出力するプログラム

C の abs() 関数を使用して、指定された数値の絶対値を出力するプログラムを作成してみましょう。

絶対.c

 #include #include // use stdlib.h header file to use abs() function. #include int main() { printf (' The absolute value of 27 is %d ', abs (27)); printf (' 
 The absolute value of -16 is %d ', abs (-16)); printf (' 
 The absolute value of -125 is %d ', abs (-125)); printf (' 
 The absolute value of 18 is %d ', abs (18)); printf (' 
 The absolute value of -29 is %d ', abs (-29)); printf (' 
 The absolute value of 0 is %d ', abs (0)); return 0; } 

出力

 The absolute value of 27 is 27 The absolute value of -16 is 16 The absolute value of -125 is 125 The absolute value of 18 is 18 The absolute value of -29 is 29 The absolute value of 0 is 0 

for ループを使用して 2 つの整数間の絶対値を出力するプログラム

次を使用して 2 つの整数間の絶対値を出力する例を考えてみましょう。 Cのforループ プログラム。

Abs2.c

 #include #include #include int main() { int i, num, last; printf (' Enter the first number: 
 '); scanf (' %d', &num); printf ('
 Enter the last number from which you want to get the absolute number: &apos;); scanf (&apos; %d&apos;, &amp;last); // use for loop to print the absolute number for (i = num; i <= last; i++) { abs() function convert a negative number to positive printf( '
 the absolute value of %d is %d. ', i, abs( i)); } return 0; < pre> <p> <strong>Output</strong> </p> <pre> Enter the first negative number: -5 Enter the last number from which you want to get the absolute number: 5 The absolute value of -5 is 5. The absolute value of -4 is 4. The absolute value of -3 is 3. The absolute value of -2 is 2. The absolute value of -1 is 1. The absolute value of 0 is 0. The absolute value of 1 is 1. The absolute value of 2 is 2. The absolute value of 3 is 3. The absolute value of 4 is 4. The absolute value of 5 is 5. </pre> <h3>Program to get the absolute value without using the abs() function</h3> <p>Let&apos;s create a C program to get the absolute value of a number without using the abs() function.</p> <p> <strong>Abs.c</strong> </p> <pre> #include #include // use stdlib.h header file to use abs() function. int getAbsolute (int num) { /* if the passed value (num) is less than 0 (zero), the number multiplied by (-1) to return an absolute value. */ if (num <0) { num="(" -1 ) * num; given negative number multiplied by (-1) printf (' the absolute value is: %d', num); } else return int main() enter a to display value: '); scanf ('%d', &num); call functon getabsolute(num); 0; < pre> <p> <strong>Output</strong> </p> <pre> Enter a number to display the absolute value: -8 The absolute value is: 8 </pre> <p>As we can see in the above program, we have passed an integer number from the user. If the given number is negative, it will be multiplied by (-1) to return the positive number. And if the number is positive, it returns the same number.</p> <hr></0)></pre></=>

abs()関数を使わずに絶対値を取得するプログラム

abs() 関数を使用せずに数値の絶対値を取得する C プログラムを作成してみましょう。

腹筋運動

 #include #include // use stdlib.h header file to use abs() function. int getAbsolute (int num) { /* if the passed value (num) is less than 0 (zero), the number multiplied by (-1) to return an absolute value. */ if (num <0) { num="(" -1 ) * num; given negative number multiplied by (-1) printf (\' the absolute value is: %d\', num); } else return int main() enter a to display value: \'); scanf (\'%d\', &num); call functon getabsolute(num); 0; < pre> <p> <strong>Output</strong> </p> <pre> Enter a number to display the absolute value: -8 The absolute value is: 8 </pre> <p>As we can see in the above program, we have passed an integer number from the user. If the given number is negative, it will be multiplied by (-1) to return the positive number. And if the number is positive, it returns the same number.</p> <hr></0)>

上記のプログラムでわかるように、ユーザーから整数値を渡しています。指定された数値が負の場合、(-1) を乗算して正の数値を返します。数値が正の場合は、同じ数値を返します。