TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

C++ Math abs() Functions

C++ Math abs() Functions with tutorial for beginners and professionals with examples on isgreaterequal(), less(), islessequal(), islessgreater(), isunordered(), exp(), frexp(), ldexp(), log(), log10(), modf(), exp2(), expm1(), log1p(), log2(), logb(), scalbn(), scalbln() etc.

<< Back to CPP

C++ Math abs()

The function finds the absolute value of a given number.

Suppose a number is 'x':

abs(x) = |x|;

Difference between abs() and fabs()

The abs() function does not support float or double type arguments while fabs() function supports float, double as well as integer type arguments.

Syntax

int abs( int x);
long int abs(long int x );
 long long int abs(long long int x);

Parameter

x: The value whose absolute value is to be determined.

Return value

It returns the absolute value of x.

Example 1

Let's see the simple example when the value of x is negative.

#include 
#include
using namespace std;
int main()
{
    int x= -9;
    std::cout << "Value of x is :" <

Output:

Value of x is :-9
Absolute value of x is : 9   

In this example, abs() function computes the absolute value of x and returns the value 9.

Example 2

Let's see the simple example when the value of x is positive.

#include 
#include
using namespace std;
int main()
{
   int x= 89;
  std::cout << "Value of x is :" <

Output:

Value of x is :89
Absolute value of x is : 89   

In this example, abs() function computes the absolute value of x.


Next TopicC++ Math Functions




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf