Объяснение:
salary = 100;
premium = 0;
if (experience >= 2 || experience < 5) premium = salary * 0.02
else if (experience >= 5 || experience < 10) premium = salary * 0.10
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Объяснение:
salary = 100;
premium = 0;
if (experience >= 2 || experience < 5) premium = salary * 0.02
else if (experience >= 5 || experience < 10) premium = salary * 0.10