This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
no lines of code |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
//This program is used to determine if you will be eligible for a bonus | |
public class bonus { | |
public static void main (String[] args){ | |
Scanner read = new Scanner(System.in); | |
//This is the amount of years the person has worked at their company | |
int yearsWorked; |
NewerOlder