VOOZH about

URL: https://www.geeksforgeeks.org/perl/perl-mathbigint-is_odd-method/

⇱ Perl | Math::BigInt->is_odd() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Perl | Math::BigInt->is_odd() method

Last Updated : 3 Oct, 2019
Math::BigInt module in Perl provides objects that represent integers with arbitrary precision and overloaded arithmetical operators. is_odd() method of Math::BigInt module is used to check whether a number stored as BigInt object is an odd number or not.
Syntax: Math::BigInt->is_odd() Parameter: None Returns: true if the number stored in BigInt object is an odd number, otherwise returns false.
Example 1: Use of Math::BigInt->is_odd() method
Output:
89123751682746 is not an odd number
6348762649837957979685908708650797587783 is an odd number
Example 2: Use of Math::BigInt->is_odd() method to check whether Octal number is an odd number in decimal or not.
Output:
726746425 (in octal) is an odd number in decimal
Example 3: Use of Math::BigInt->is_odd() method to check whether a hexadecimal is an odd number in decimal or not.
Output:
Ox112210F4B16C1CB1 (in hexadecimal) is an odd number in decimal
Comment
Article Tags:

Explore