Code MyProgram.java
import java.util.*;
public class MyProgram
{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String add;
double cost;
//Ask for address and cost
System.out.println("Enter Address :");
add=sc.next();
System.out.println("Enter Cost of House :");
cost=sc.nextDouble();
House obj=new House(add,cost);
System.out.println(obj.getString()+" "+obj.getmonthPayment());
}
}
Code House.java:
import java.lang.Math;
public class House{
private String address;
private double cost;
private double interst;
private int mortgageTime;
private double monthPayment;
//Constructor
public House(String address,double cost)
{
this.address=address;
this.cost=cost;
this.mortgageTime=20;
this.interst=1.6;
}
//method to get monthly value
public double getmonthPayment()
{
double down= (5*cost)/100; //5% of cost
double loan=cost-down;
this.monthPayment=(loan*interst/(100*12))/(1-Math.pow((1+((interst/(12*100)))),(-12*mortgageTime)));
return monthPayment;
}
//method to get string
public String getString()
{
return this.address;
}
}
Sample Output:
Enter Address :
Pune
Enter Cost of House :
155000
Pune 717.3404427133927
Need Help....Java MyProgram.java: public class MyProgram { public static void main(String[] args) { } } House.java:...
import java.util.Scanner; public class MPGMain { public static void main(String[] args) { Scanner input = new Scanner(System.in); Mileage mileage = new Mileage(); System.out.println("Enter your miles: "); mileage.setMiles(input.nextDouble()); System.out.println("Enter your gallons: "); mileage.setGallons(input.nextDouble()); System.out.printf("MPG : %.2f",mileage.getMPG()); } } public class Mileage { private double miles; private double gallons; public double getMiles()...
This is for a java program public class Calculation { public static void main(String[] args) { int num; // the number to calculate the sum of squares double x; // the variable of height double v; // the variable of velocity double t; // the variable of time System.out.println("**************************"); System.out.println(" Task 1: Sum of Squares"); System.out.println("**************************"); //Step 1: Create a Scanner object //Task 1. Write your code here //Print the prompt and ask the user to enter an...
Given main(). define the Artist class (in file Artist java) with constructors to initialize an artist's information, get methods, and a printlnfo() method. The default constructor should initialize the artist's name to "None' and the years of birth and death to 0. printinfo() should display Artist Name, born XXXX if the year of death is -1 or Artist Name (XXXX-YYYY) otherwise. Define the Artwork class (in file Artwork.java) with constructors to initialize an artwork's information, get methods, and a printinfo() method. The constructor should...
import java.util.Scanner; public class StudentClient { public static void main(String[] args) { Student s1 = new Student(); Student s2 = new Student("Smith", "123-45-6789", 3.2); Student s3 = new Student("Jones", "987-65-4321", 3.7); System.out.println("The name of student #1 is "); System.out.println("The social security number of student #1 is " + s1.toString()); System.out.println("Student #2 is " + s2); System.out.println("the name of student #3 is " + s3.getName()); System.out.println("The social security number...
Correct the mistakes public class customer { public static void main(String[] args) { D customer=new d(); d.employee(56,”ali”); d.department(7,8.6,9); } public void employee(String name, int age) { System.out.println("Your name is"+name); System.out.println(“Age is”+age); } public int department(double d, double t, int a) { System.out.println("I have java exam at 3:00"); Return(1.1); } } V. PROGRAMMING. Write a complete JAVA program to implement the following. 1. Create a class named Exponent. Its main() method accepts an integer value from a user at the keyboard,...
Need help with the program
DemoSugarSmash.java
import java.util.*;
public class DemoSugarSmash
{
public static void main(String[] args)
{
// Complete the demo program here
}
}
PremiumSugarSmashPlayer.java
public class PremiumSugarSmashPlayer
{
// Define the PremiumSugarSmashPlayer class here
}
PremiumSugarSmashPlayer.java
public class SugarSmashPlayer {
private int playerID;
private String screenName;
private int[] scoresArray ;
public SugarSmashPlayer() {
this.scoresArray = new int[10];
}
public SugarSmashPlayer(int levels) {
this.scoresArray = new int[levels];
}
public int getIdNumber() {
return playerID;
}
public void setIdNumber(int...
Fix this program
package chapter8_Test;
import java.util.Scanner;
public class Chapter8
{
public static void main(String[] args)
{
int[] matrix = {{1,2},{3,4},{5,6},{7,8}};
int columnChoice;
int columnTotal = 0;
double columnAverage = 0;
Scanner input = new Scanner(System.in);
System.out.print("Which column would you like to average (1 or
2)? ");
columnChoice = input.nextInt();
for(int row = 0;row < matrix.length;++row)
{
columnTotal += matrix[row][columnChoice];
}
columnAverage = columnTotal / (float) matrix.length;
System.out.printf("\nThe average of column %d is %.2f\n",
columnAverage, columnAverage);
}
}
This program...
class Test public static void main(String args) { Aa=new AO: a.printo: class A private String s; public A (String news) { 8 = news: public void print { System.out.println(s): The program would compile and run if you change A a new Alto Aa=new A('5'). The program has a compilation error because the instance variables in class A is not public. The program has a compilation error because class A does not have a no-arguments constructor The program compiles and runs...
JAVA Language public class ArraySkills { public static void main(String[] args) { // *********************** // For each item below you must code the solution. You may not use any of the // methods found in the Arrays class or the Collections classes // String[] myData; // 1. Instantiate the given array to hold 10 Strings. // 2. Add your name to the Array at index 0 and a friend's name to the Array at index 4 // 3. Move your...
My Java code from last assignment:
Previous Java code:
public static
void main(String args[]) {
// While loop set-up
boolean flag = true;
while (flag) {
Scanner sc = new
Scanner(System.in);
// Ask user to enter employee number
System.out.print("Enter employee
number: ");
int employee_number = sc.nextInt();
// Ask user to enter last name
System.out.print("Enter employee last
name: ");
String last_name = sc.next();
// Ask user to enter number of hours worked
System.out.print("Enter number of
hours worked: ");
int hours_worked =...