Skip to content

Commit

Permalink
Finished Assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
clemunoz committed Sep 29, 2019
1 parent 0933af0 commit e8f0c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/sbcc/cs105/Program.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static void main(String[] args) {
Employee harry = new Employee("Harry", 10000);
harry.raiseSalary(10); // Harry gets a 10% raise.
double harrysSalary = harry.getSalary();
System.out.printf("Name: %s, Salary: %f",harry.getName(),harry.getSalary());
System.out.printf("Name: %s , Salary: %f",harry.getName(),harry.getSalary());


}
Expand Down

0 comments on commit e8f0c72

Please sign in to comment.