Ask a New Question

Railly

This page lists questions and answers that were posted by visitors named Railly.

Questions

The following questions were asked by visitors named Railly.

Can someone please help me out!!!I included what I have so far.. *Purpose: Say that you owe the credit card company $1000.00. The company charges you 1.5% per month on the unpaid balance. You have decided to stop using the card and to pay off the debt by...
17 years ago

Answers

The following answers were posted by visitors named Railly.

this is what i have so far.. class Exercise1 { public static void main (String[] args ) { EasyReader console = new EasyReader(); final double owed= 1000.0; final double tax=0.015; double previousBalance=0; int months; System.out.print( "Enter the monthly...
17 years ago
class Exercise1 public static void main (String[] args ) EasyReader console = new EasyReader(); final double owed= 1000.0; final double tax=0.015; double previousBalance=0; int months; System.out.print( "Enter the monthly payment: " ); double payment = co...
17 years ago
while (previousBalance<owed) { previousBalance =(previousBalance-payment)+(tax*previousBalance); System.out.println("Balance: "+previousBalance+ "Total Payments: "+balance); if it bothers you so much don't answer STUDENT
17 years ago
previousBalance=(previousBalance-payment)+(tax*previousBalance); System.out.println("Balance:"+previousBalance+ "Total Payments: "+balance); if it bothers you so much don't answer STUDENT
17 years ago
Ask a New Question
Archives Contact Us Privacy Policy Terms of Use