Program to compute the weekly wages repeatedly

Assignment Help C/C++ Programming
Reference no: EM13938521

It contains the C++ wages program using a repeat loop in order to enable the user to compute several wages. The loop ends when the user enters -1 for either the hours_worked or the pay_rate. C++ uses the "do" keyword instead of "repeat".

/* Program to compute the weekly wages repeatedly */
/* */
/* Inputs: (keyboard) */
/* 1. No. of hours worked during a week (integer) */
/* 2. Pay rate (dollars per week) (float) */
/* */
/* Output: */
/* weekly wages displayed on screen as float */
/* */
/* Algorithm: wages = hours worked * rate of pay */
/* */
/****************************************************/

#include <iostream>

using namespace std;

int main()
{
int hours_worked;
float pay_rate;
float wages;

do //here starts the repeat loop
{
//read in the hours worked
cout << endl ;
cout << "Number of hours worked during"
<< " the week (integer) = " ;
cin>> hours_worked;

// read in the pay rate
cout << "Weekly pay rate (specify two digits "
<< "after the decimal point) = " ;
cin>>pay_rate;

// compute wages
wages = hours_worked * pay_rate;

// display the result
cout << endl ;
cout << "The weekly wages are: tiny_mce_markerquot; << wages << endl ;

}while((hours_worked != -1) && (pay_rate != -1)); //loop ends here
return(0);
}

Reference no: EM13938521

Questions Cloud

Critically analyse and reasearch a particular event : Could you refer to Order ID: MAH160814_16840_33120 for all the previous uploaded files? Thanks. Question: Develop a ‘whole-of-organisation' communication strategy for an international event to be conducted in City X involving multiple nationalitie..
Gregorian chant and plain chant : When you listen to Gregorian chant/plain chant such as"Ave, Rex noster, fili David" (link below), do you feel that It "stands alone," or do you feel that it could use harmony, more regular rhythm, or even musical instruments to be more effective? ..
What is the present value of this buildings tax shields : A local engineering firm just bought a new office building (CCA=4%) for $500,000. Useful life of 30 years is expected with no salvage value. If tax rate is 40%, and required rate is 10%, then what is the present value of this building's tax shields?
Describe the symptoms of that disease : Using Google (not Google Scholar), describe content from a source or sources claiming a treatment for which there exists little or no evidence or scientific plausibility for its efficacy. Describe what makes the treatment questionable.
Program to compute the weekly wages repeatedly : It contains the C++ wages program using a repeat loop in order to enable the user to compute several wages. The loop ends when the user enters -1 for either the hours_worked or the pay_rate. C++ uses the "do" keyword instead of "repeat".
Proceeds are used to repurchase outstanding stock : An unlevered firm with a market value of $1 million has $50,000 shares outstanding. The firm restructures itself by issuing 200 new bonds with an 8% coupon. Proceeds are used to repurchase outstanding stock. Ignoring taxes, what is the break even EBI..
What depreciation method does abercrombie and fitch use : What depreciation method does Abercrombie & Fitch use? What depreciation method does Aeropostale use? What are the typical useful lives of each company's operating assets?
Calculate the present value break-even point : Calculate the present value break-even point (also called the financial break-even point). Initial Investment: $700. Fixed Cost: $200 per year
Duration of the project at an interest rate : In OLQ2 and GSPT1 you did numerous duration calculations for a variety of bonds. Examining your results, explain how your results illustrate the following claims (from slides 41-42 of your week 06 lecture).

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd