|
|
โปรแกรมคำนวณเงินเดือนโดยที่รับค่า ชื่อพนักงาน เงินเดือน ค่าล่วงเวลา (ชั่วโมงละ 100 บาท) เงื่อนไขคือ ถ้าค่าล่วงเวลามากกว่า 40 ชั่วโมง คิดอัตราชั่วโมงละ 1.5 เท่า โปรแกรมภาษาซี |
|
|
|
|
|
|
|
ช่วยหน่อยน่ะค่ะ
เขียนโปรแกรมคำนวณเงินเดือนโดยที่รับค่า
ชื่อพนักงาน เงินเดือน ค่าล่วงเวลา (ชั่วโมงละ 100 บาท)
เงื่อนไขคือ ถ้าค่าล่วงเวลามากกว่า 40 ชั่วโมง คิดอัตราชั่วโมงละ 1.5 เท่า
โปรแกรมภาษาซี
ที่มา : http://www.vcharkarn.com/vcafe/195505
#include <stdio.h>
#include <conio.h>
int main()
{
int i,n;
char name[100];
float salary[100];
float overtime[100];
float y[100];
printf("Enter Size of the number of employees: ");
scanf("%d",&n);
for(i = 0; i < n; i++){
printf("Enter name of employee[%d]: ",i+1);
scanf("%s",&name);
printf("Enter salary[%d]: ",i+1);
scanf("%f",&salary[i]);
printf("Enter overtime[%d]: ",i+1);
scanf("%f",&overtime[i]);
y[i] = salary[i] + overtime[i]*100;;
}
for(i = 0; i < n; i++){
if(overtime[i] > 40){
printf("\n\nTotal salary[%d]: %f",i+1,(1.5*salary[i])+salary[i]);
}
else if(overtime[i] < 40){
printf("\n\nTotal salary[%d]: %f",i+1,y[i]);
}
}
getch();
}
Tag : C
|
|
|
|
|
|
Date :
2014-01-06 12:32:15 |
By :
noksaak |
View :
38053 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2014-01-06 14:18:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|