Railly
This page lists questions and answers that were posted by visitors named Railly.
Questions
The following questions were asked by visitors named Railly.
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