Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
7
Posts with Downvotes
4
Downvoting Members
4
4 Commented Posts
0 Endorsements
~891 People Reached
Favorite Forums
Favorite Tags
Member Avatar for swiss21

PROBLEMS 1.AFTER INPUT IN PHILHEALTH CONTRIBUTION PROGRAM CRUSHES. 2.AFTER INPUT Y or y in delete employee data PROGRAM CRUSHES. 3.AFTER REGISTER EMPLOYEE AND GOING TO VIEW EMPLOYEE PROGRAM CRUSHES. SAME ERROR A WINDOW WILL POP UP AND IT LIKE THE WINDOWS ERROR. #include <stdio.h> #include <string.h> int InformaticsPayrollSystemMenu(); int main() …

Member Avatar for Ancient Dragon
-1
189
Member Avatar for swiss21

#include <stdio.h> #include <string.h> int InformaticsPayrollSystemMenu(); int main() { char fname[100],lname[100],sex[100],con[100],dob[100],ans; int empnum[100],pay[100],payrollSystemMenuChoice,choice,emp,edit; int i=0,found=0; float rate,week,weekyear,ot,abs,weeksal,monthsal,annal,sss,pagibig,phl,tax,netpay; system ("color 0A"); system("title INFORMATICS PAYROLL SYSTEM"); do { payrollSystemMenuChoice = InformaticsPayrollSystemMenu(); switch(payrollSystemMenuChoice) { case 1: { found = 1; printf("\n\t\t******************************************"); printf("\n\t\t********* REGISTER NEW EMPLOYEE **********"); printf("\n\t\t******************************************"); printf("\n\t\tNOTE:Please fill up the form properly …

Member Avatar for Adak
0
194
Member Avatar for swiss21

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <conio.h> int main() { printf("\t//*****************St.Jago High School******************\\ \n\n"); printf("\t------------Courtney Athlone St.Michael Reid---------------\n\n"); printf("\t^^^^^^^^^Computer Science IA-Pay Roll System^^^^^^^^^\n\n"); char fname[50]; char lname[20]; printf("Enter the employee's First Name:\n"); scanf("%s",&fname[50]); printf("Enter the employee's Last Name:\n"); scanf("%s",&lname[20]); } int add_hours() { printf("\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n"); printf("\t^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n"); int hours; int mo, …

Member Avatar for zeroliken
0
159
Member Avatar for swiss21

#include <stdio.h> #include <float.h> float grosssalarycalc(float value1,float value2){ float gsalary; gsalary=value1+value2; return (gsalary); } float ovtmpayoutcalc(float value1){ float ovtmpayout; ovtmpayout=25*value1; return (ovtmpayout); } float netpayoutcalc(float value1){ float netsalary; netsalary=value1-(value1*0.20); return (netsalary); } int main() { char name[32]; float ovtmpayout0,gross,net,ovtmhrs,salary; printf("Payroll Calculation Program\n"); printf("Employee, please enter your name:\n"); scanf("%s", name); printf("Employee, …

Member Avatar for ram619
0
143
Member Avatar for swiss21

IM BEGGING YOU TO PLEASE HELP ME,IM NOT REALLY FAMILIAR IN PROGRAMMING BUT I NEED TO DO THIS BECAUSE IT'S OUR DEFENSE NEXT WEEK AND I NEED TO CREATE A PROGRAM IN DEVC++ THAT WILL GET THE EMPLOYEE SALARY AND DATA,I KNOW SOME OFYOU GUYS CAN HELP ME CREATE A …

Member Avatar for NathanOliver
-3
206