Java Programming Updates
Main page | Learning to Code - Updates | Links | Contacts |
Okay, so to start I've set myself to finish doing some challenges with numbers
- Binary to Decimal and Back Converter. Done.
- Number Names
- Distance Between Two Cities
- Limit Calculator
- Credit Card Validator
- Alarm Clock
- - Develop a converter to convert a decimal number to binary or a binary number to its decimal equivalent
- - Show how to spell out a number in English. You can use a preexisting implementation or roll your own, but you should support inputs up to at
least one million (or the maximum value of your language's default bounded integer type, if that's less). Optional: Support for inputs other than positive
integers (like zero, negative integers, and floating-point numbers)
- - Calculates the distance between two cities and allows the user to specify a unit of distance. This program may require finding
coordinates for the cities like latitude and longitude.
- - Ask the user to enter f(x) and the limit value, then return the value of the limit statement Optional: Make the calculator capable of supporting
infinite limits.
- - Takes in a credit card number from a common credit card vendor (Visa, MasterCard, American Express, Discoverer) and validates it to make sure that
it is a valid number (look into how credit cards use a checksum).
- - A simple clock where it plays a sound after X number of minutes/seconds or at a particular time.
Credits for the list that i'm using (by karan)
Notes
I'm thinking of adding links to my source code here... later
Testing deploy fix