LabClass
This commit is contained in:
parent
2248cc8666
commit
feeaa48005
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
/lab4_CalebFontenot/target/
|
/lab4_CalebFontenot/target/
|
||||||
/lab5_CalebFontenot/target/
|
/lab5_CalebFontenot/target/
|
||||||
|
/LabClass_Sep6_CalebFontenot/target/
|
||||||
|
14
LabClass_Sep6_CalebFontenot/pom.xml
Normal file
14
LabClass_Sep6_CalebFontenot/pom.xml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.calebfontenot.labclass_sep6_calebfontenot</groupId>
|
||||||
|
<artifactId>LabClass_Sep6_CalebFontenot</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<maven.compiler.source>18</maven.compiler.source>
|
||||||
|
<maven.compiler.target>18</maven.compiler.target>
|
||||||
|
<exec.mainClass>com.calebfontenot.labclass_sep6_calebfontenot.LabClass_Sep6_CalebFontenot</exec.mainClass>
|
||||||
|
</properties>
|
||||||
|
</project>
|
@ -0,0 +1,68 @@
|
|||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package com.calebfontenot.labclass_sep6_calebfontenot;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author caleb
|
||||||
|
*/
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
public class ComputeTax {
|
||||||
|
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
// Create a Scanner
|
||||||
|
Scanner input = new Scanner(System.in);
|
||||||
|
|
||||||
|
// Prompt the user to enter filing status
|
||||||
|
System.out.print("(0-single filer, 1-married jointly or "
|
||||||
|
+ "qualifying widow(er), 2-married separately, 3-head of "
|
||||||
|
+ "household) Enter the filing status: ");
|
||||||
|
|
||||||
|
int status = input.nextInt();
|
||||||
|
|
||||||
|
// Prompt the user to enter taxable income
|
||||||
|
System.out.print("Enter the taxable income: ");
|
||||||
|
double income = input.nextDouble();
|
||||||
|
|
||||||
|
// Compute tax
|
||||||
|
double tax = 0;
|
||||||
|
|
||||||
|
if (status == 0) { // Compute tax for single filers
|
||||||
|
if (income <= 8350) {
|
||||||
|
tax = income * 0.10;
|
||||||
|
} else if (income <= 33950) {
|
||||||
|
tax = 8350 * 0.10 + (income - 8350) * 0.15;
|
||||||
|
} else if (income <= 82250) {
|
||||||
|
tax = 8350 * 0.10 + (33950 - 8350) * 0.15
|
||||||
|
+ (income - 33950) * 0.25;
|
||||||
|
} else if (income <= 171550) {
|
||||||
|
tax = 8350 * 0.10 + (33950 - 8350) * 0.15
|
||||||
|
+ (82250 - 33950) * 0.25 + (income - 82250) * 0.28;
|
||||||
|
} else if (income <= 372950) {
|
||||||
|
tax = 8350 * 0.10 + (33950 - 8350) * 0.15
|
||||||
|
+ (82250 - 33950) * 0.25 + (171550 - 82250) * 0.28
|
||||||
|
+ (income - 171550) * 0.33;
|
||||||
|
} else {
|
||||||
|
tax = 8350 * 0.10 + (33950 - 8350) * 0.15
|
||||||
|
+ (82250 - 33950) * 0.25 + (171550 - 82250) * 0.28
|
||||||
|
+ (372950 - 171550) * 0.33 + (income - 372950) * 0.35;
|
||||||
|
}
|
||||||
|
} else if (status == 1) { // Compute tax for married file jointly
|
||||||
|
// Left as exercise in Programming Exercise 3.13
|
||||||
|
} else if (status == 2) { // Compute tax for married separately
|
||||||
|
// Left as exercise in Programming Exercise 3.13
|
||||||
|
} else if (status == 3) { // Compute tax for head of household
|
||||||
|
// Left as exercise in Programming Exercise 3.13
|
||||||
|
} else {
|
||||||
|
System.out.println("Error: invalid status");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Display the result
|
||||||
|
System.out.println("Tax is " + (int) (tax * 100) / 100.0);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.calebfontenot.labclass_sep6_calebfontenot;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author caleb
|
||||||
|
*/
|
||||||
|
public class LabClass_Sep6_CalebFontenot {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("Hello World!");
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package com.calebfontenot.labclass_sep6_calebfontenot;
|
||||||
|
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author caleb
|
||||||
|
*/
|
||||||
|
public class SimpleIfDemo {
|
||||||
|
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
Scanner input = new Scanner(System.in);
|
||||||
|
System.out.print("Enter an integer: ");
|
||||||
|
int number = input.nextInt();
|
||||||
|
|
||||||
|
if (number % 5 == 0) {
|
||||||
|
System.out.println("HiFive");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (number % 2 == 0) {
|
||||||
|
System.out.println("HiEven");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -38,7 +38,7 @@ public class Operators {
|
|||||||
expression to evaluate 2.0.
|
expression to evaluate 2.0.
|
||||||
Assign the evaluation to varible z3
|
Assign the evaluation to varible z3
|
||||||
*/
|
*/
|
||||||
double z3 = ((double) x /(double) y * --d);
|
double z3 = ((double) x /(double) y * (d - 1));
|
||||||
//add code here
|
//add code here
|
||||||
System.out.println("z3: "+ z3 );
|
System.out.println("z3: "+ z3 );
|
||||||
|
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||||
|
*/
|
||||||
|
package com.calebfontenot.lab5_calebfontenot;
|
||||||
|
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author caleb
|
||||||
|
*/
|
||||||
|
public class WhatsYourSSN {
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
// Create Scanner
|
||||||
|
Scanner input = new Scanner(System.in);
|
||||||
|
|
||||||
|
// Declare vars
|
||||||
|
String ssn;
|
||||||
|
|
||||||
|
// Prompt for input
|
||||||
|
System.out.print("What's your SSN? ");
|
||||||
|
ssn = input.next();
|
||||||
|
|
||||||
|
// Print output
|
||||||
|
System.out.println(ssn + " is your SSN.");
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user