write the pseudocode for a program to the wages of salesman according yo the following rules the wages is calculated at a rate 15%of sale if the salesman has been with the company more than three year he has loyalty bonus of 10%of his calculated wages.

2 answers

wages = sales*.15
wages *= 1.10 if time > 3
#include stdio.h #include conio.h void main( ), (