Question
you assholes let me known. REspond beteter next time If there are 2 dependents in the household the family is eligible for $1,500 per dependent
you assholes let me known. REspond beteter next time
If there are 2 dependents in the household the family is eligible for $1,500 per dependent
If there are 3 dependents in the household the family is eligible for $2,500 per dependent
If there are 4 dependents in the household the family is eligible for $3,000 per dependent
In all other situtations, the family is not eligible for any financial aid
You can use the following stub solution. Copy and paste this solution into your IDE. You should complete blocks 1 through 4.
import javax.swing.JOptionPane; public class FinancialAid { public static void main(String[] args) { final int NUM_MIN_DEPENDENTS = 0; final int NUM_MAX_DEPENDENTS = 9; /* #1: Create code that will call the method you created in #3 below to get the number of dependents, * factoring in the minimum and maximum number of dependents allowed */ /* #2: Create code that will call the method you created in #4 below to calculate the amount of aid * that will be earned based on the number of dependents gathered. */ printFinancialAid(aid); } /* #3: Create a method to get and return the number of dependents, factoring in * the minimum and maximum number of dependents allowed */ /* #4: Create a method to calculate and return the amount of financial aid that will be earned * based on the number of dependents gathered */ public static void printFinancialAid(double aid) { JOptionPane.showMessageDialog(null, "The amount of financial aid your family is eligible for is: $" + String.format("%.2f", aid)); } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started