Asked by BAKARI MOHAMEDI

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.

Answers

Answered by Steve
wages = sales*.15
wages *= 1.10 if time > 3
Answered by Anonymous
#include stdio.h #include conio.h void main( ), (
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions