A c time card program Takes in users first name last nameID
A c++ time card program:
Takes in users first name, last name,ID number, pay rate, and email.
Displays who they work for(i.e. Department and supervisor and supervisor email)
Takes in how many hours they worked- start time, Break, end time
Emails report to person and supervisor report
If over 20 hrs it gets sent to supervisor with warning
Loops for a 2 week period & email hr biweekly report
Solution
first we have to give veriable
as string for name
and int for id number
and agaun use double for payret
and string as email
decalring veriable as
Stirng personName=\" chegg\";
String LastName=\"india\";
Int id=22;
Double payrate=222.3;
String Email=\"xyz\"

