Posts

Showing posts from 2009

Arabic to Roman Numerals in JAVA

public static String ArabicToRoman(int aNumber){ if(aNumber < 1 || aNumber > 3999){ return "-1"; } int[] aArray = {1000,900,500,400,100,90,50,40,10,9,5,4,1}; String[] rArray = {"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"}; String rNumber = ""; for(int i=0; i while(aNumber >= aArray[i]){ rNumber += rArray[i]; aNumber -= aArray[i]; } } return rNumber; }

Satellite files downloader (SatDownloader)

Image
SatDownloader v1.1 SatDownloader is a program for downloading files from the internet. The files will be downloaded from the site www.onedayfiles.com Download: SatDownloader v1. 1 Requirements: Java or Java Runtime Environment

Currency converter (cConverter) v1.3

Image
v1.3 Currency Converter is a tool designed to help you convert currency by the daily exchange rate. The application make it posible to convert in 35 different currencies. Currency Converter v1.3 is also easy-to-use, reliable and free. Download : Currency converter v1.3 Requirements: Java or Java Runtime Environment

Currency Converter v1.2

Image
Currency Converter is a tool designed to help you convert currency by the daily exchange rate. The application make it posible to convert in 35 different currencies. Currency Converter v1.2 is also easy-to-use, reliable and free. Download : Currency Converter v1.2 Requirements: Java