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
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 11
Member Avatar for jalo3030

I need help work wil not compile this is what I have to do. Write a program that calculates and prints the monthly paycheck for an employee. The net pay is calculated after taking the following deductions (define these as constant variables): Federal Income Tax: 15% State Tax: 3.5% Social …

Member Avatar for Ancient Dragon
0
117
Member Avatar for jalo3030

Whats am i doing wrong it is not compile Write a C++ program that creates customers’ bills for a carpet company when the following information is given: a.The length and the width of the carpet in feet. b.The carpet price per square foot. c.The percent of discount for each customer. …

Member Avatar for Ancient Dragon
0
283
Member Avatar for jalo3030

can some one start me off i'm lost Write a C++ program that calculates customers’ bills for building a desk. The main ( ) function shall call four functions (described below). Pass all variables so that the functions make copies of any variables they receive. The following four functions are …

Member Avatar for Ancient Dragon
0
92
Member Avatar for jalo3030

What am I doing wrong with this one. I'm a beginner Write a program that takes as input any change expressed in cents. It should then compute the number of half-dollars, quarters, dimes, nickels, and pennies to be returned, returning as many half-dollars as possible, then quarters, dimes, nickels, and …

Member Avatar for Ancient Dragon
0
424
Member Avatar for jalo3030

[code=cpp]#include <iostream> #include <iomanip> using namespace std; const float originalPrice = 50; const float markedupRate = 10; const float cTaxRate = 4; int main() { cout << "Enter the original price: "; float originalPrice; cin >> originalPrice; cout << "Enter the marked up rate(percent) : "; float markedupRate; cin >> …

Member Avatar for JRM
0
301