try #Makes program and dictionary, then executes with sample data calc 10 123 x 456 file #Multiply 123 by 456, save pattern to file matchwrd dict file #Find a match for the multiplicationFormat:
organizecalc <base> <arg1> <op>
<arg2> <save file>| base | = | what base to use, usually 10 (decimal) |
| op | = | the operation to apply, + for addition or x for multiplication |
| arg1, arg2 | = | the arguments to apply the operation to. After 0 to 9, uses a to z. Not case sensitive |
| save file | = | the name of the file to save the result to |
matchwrd <dictionary> <pattern>| dictionary | = | the preprocessed dictionary from organize |
| pattern | = | the calculated pattern from calc |
| Alphametics-standalone | C++ source code of the alphametics generator. Includes words file to be converted into a dictionary. |
| Alphametics-CGI | C++ source code of the CGI version of the alphametics generator. Get this if you want to add it to your webpage. Does not include the dictionary file. This version can be tried here. |
| Dictionary | The dictionary file to be used with either of the above programs. |