Write an algorithm to give bonus of Rs 1000 to those employees whose salary is more than Rs. 5000
Answers
Answered by
2
Answer:
if(a>5000)
{
sum=a+1000;
System.out.prntln("Here's your bonus "+sum);
}
else;
{
System.out.println("Bonus is not granted");
}
Similar questions