Find Us On: Facebook Twitter Rss Feed Blog
Need To Register?
<< < 1 2 3 4 5 6 7 8 > >>
Assignment Price Category Due
Java Distance 15.00 Programming 10/3/2013
This is a different approach using a class to model a new data type rather than just to write a group of statements in amain() method. The basic idea is to write a Distance class that represents length as an object in English measurements (feet and inches). However there will be onl...
C# - Fahrenheit to Celsius Converter 10.00 Programming 10/4/2013
1. Create an application that displays a table of the Fahrenheit temperatures 0 through 100, in increments of 5, and their centigrade equivalents. 2. The application should use a loop to display the temperatures in a list box. 3. Write a method that takes a Fahrenheit temperature ...
Java - Fast Food Restaurant Order Application 10.00 Programming 10/4/2013
A fast food restaurant charges $1.69 for burgers, $1.09 for fries, and $0.99 for sodas. a) Create an Order application that prompts the employee for the number of burgers, fries, and sodas and then displays the total, the (6.5%) and the final cost. The Application output should lo...
Java Rectangle 5.00 Programming 10/4/2013
Write a class named "Rectangle", which encapsulates the values ​​that describe a rectangle. Class private field should be "width", "height" and "color". All objects of type Rectangle should always be the same color as the last create...
Object Oriented Program Development Using Java 10.00 Programming 10/5/2013
Object Oriented Program Development Using Java : A Class Centered Approach Instructor's Manual Chapters 1-14 Construct a Time class containing the integer data members seconds, minutes, and hours. Have the class contain a user-written default constructor that initializes ea...
CMSC 202 Project 1 - Convenience Store - Java 15.00 Programming 10/6/2013
http://www.csee.umbc.edu/courses/undergraduate/202/fall12/projects/project1/ Filenames: CashRegister.java , Project1.java Project Overview We all encounter cash registers when we do our shopping. Some of us have even operated a cash register as part of our job. Your firs...
Array Methods - Java 10.00 Programming 10/7/2013
Array Methods Create a class called ArrayMethods and implement the methods specified below. Provide a main method that tests the methods. (Do not use any of the Java Collections classes to do this problem. Work directly with arrays.) 1. Write a method called contains that t...
Java Restaurant Bill 5.00 Programming 10/7/2013
Write a program that computes the tax and tip on a restaurant bill. The program should ask the user to enter the charge for the meal. The tax should be 6.75 percent of the meal charge. The tip should be 15 percent of the total after adding the tax. Display the meal charge, tax amount,...
FileFinder - Java 10.00 Programming 10/7/2013
File Searching Create a class called FileFinder. When the class is run, it should: 1. Display a JFileChooser from which the user should be able to choose a folder. 2. If the user closes the dialog without haven chosen a folder, the program should display a dialog asking if the use...
Java - Even Numbers Loop 5.00 Programming 10/9/2013
Write a Java program that prints out even numbers between 1 and 1000. The program will print out these numbers in the same line until it reaches multiples of 20, when it will goes to a new line and continue printing. Between each line of numbers, the program will print out a String: &...
Java - Calculate Average And Letter Grade 5.00 Programming 10/9/2013
A teacher has five students who have taken three tests. The teacher uses the following grading scale to assign a letter grade to a student, based on the average of his/her three test scores: Test Score Letter Grade 90 – 100 A 80 – 89 B 70 – 79 C 60 ...
Java - Min Max - Float Values 5.00 Programming 10/9/2013
Write a Java program that takes input 3 floating-point numbers and sends output the maximum and minimum value. Try to find the most efficient solution. The processing will take place in a sentinel controlled loop, like in the following sample output: Sample output: Min/Max pro...
Java - Validating Credit Cards 10.00 Programming 10/13/2013
Java Programming Assignment 4 Project: Validating Credit Cards Problem Description: Credit card numbers follow certain patterns. A credit card number must have between 13 and 16 digits. It must start with: 4 for Visa cards 5 for Master cards 37 for American Express cards ...
Java - Balloon and Balloon Tester 5.00 Programming 10/13/2013
Implement a class Balloon that models a spherical balloon that is being filled with air. The constructor constructs an empty balloon. Supply these methods: -void addAir(double amount) adds the given amount of air -double getVolume() gets the current volume -double getSurfaceArea...
Java - Encrypt Decrypt - COSC 236.003 15.00 Programming 10/15/2013
1 Objective More practice working with for-loops and if-statments, as well as an introduction to the String class. 2 Overview Use the String class to implement a simple kind of encryption/decryption scheme. Your project will result in 2 programs{one to encrypt strings, and one t...