Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~247 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for something_1

here's my code: #include <iostream> #include <iomanip> using namespace std; int main() { char name[30], choice; int hours_worked; float wage; do { cout << "Employee Name: "; cin.getline(name,30); cout << "No of hours worked: "; cin>>hours_worked; cout << endl; wage = 80.75*hours_worked; cout << "The salary of " << name …

Member Avatar for Usman_10
0
247