Advertisement
tonygms3

Question 4 Assignment

Dec 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int counter,hour;
  5.     for(counter=1;counter<=10;counter++)
  6.     {
  7.         printf("Enter %d employee over time hours\n",counter);
  8.         scanf("%d",&hour);
  9.         printf("%d employee's over time payment is %d taka\n",counter,hour*12);
  10.  
  11.     }
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement