1 /*worker efficiency problem*/
9 printf("Enter the time required by the worker:");
12 if(hours
>2 && hours
<=3)
13 printf("Woker is highly effecient\n");
14 else if(hours
>3 && hours
<=4)
15 printf("Worker is ordered \n");
16 else if(hours
>4 && hours
<=5)
17 printf("Worker is given training\n");
19 printf("Worker is fired\n");
21 printf("Worker must be awarded\n");