fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void)
  4. {
  5. int s,p;
  6. scanf("%d",&s);
  7. printf("請輸入上班時數%d\n",s);
  8.  
  9. if(s<=60)
  10. {
  11. p=s*75;
  12. }
  13. else if ((s>60) && (s<=75))
  14. {
  15. p=(s-60)*75*1.25+(60*75);
  16. }
  17. else if (s>75)
  18. {
  19. p=s*1.75*75;
  20. }
  21. printf("薪水是%d元",p);
  22.  
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0s 5276KB
stdin
82
stdout
請輸入上班時數82
薪水是10762元