Releases: AadhilKassim/int-to-words
Releases · AadhilKassim/int-to-words
ITW v0.6
Description for itw v0.6 Release
itw is a command-line utility that converts integers into their word representation following the Indian numbering system. With support for numbers up to 9 digits, it is a simple yet powerful tool to convert numbers into words, making it suitable for a wide range of applications from generating reports to educational purposes.
Key Features:
- Supports Indian Number System: Converts integers into words with proper use of terms like "lakh" and "crore."
- Handles Numbers Up to 9 Digits: itw can handle any number from 0 to 999,99,99,999, converting them into their word equivalents.
- Efficient and Easy to Use: A lightweight and fast tool for quick conversions directly from the command line.
- Simple CLI Interface: Run the program with a number as an argument, and it will return the word representation.
Usage:
- Input: Provide any integer from 0 to 999,99,99,999 as input.
- Output: The program will return the word representation of the number.
Example:
./itw 123456789Output:
twelve crore thirty four lakh fifty six thousand seven hundred and eighty nine
How to Use:
- Clone the Repository:
git clone https://github.com/AadhilKassim/int-to-words.git
- Navigate to the Directory:
cd int-to-words - Compile the Program:
g++ -o itw Source/itw.cpp Source/function.cpp
- Run the Program:
./itw <number>
This version marks v0.6 of the project, with upcoming releases to extend support beyond 9 digits and improve error handling.