Hi guys,
After running the code I am getting message "Carefully check the displayed text. It looks like you made a typo or forgot to add 1000.". Can someone help me to solve this, because I am getting correct result.
package com.codegym.task.task02.task0205;
/*
Pay raise
*/
public class Solution {
public static void main(String[] args) {
hackSalary(8000);
}
public static void hackSalary(int a) {
a=8000;
System.out.println("Your salary is: "+(a+1000)+" dollars per month.");
return;
}
}