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

  Programing for financial system

Write c++ programing for financial system using class and object

  Program to count the number of heart beat

If a human heart beats on the average of once a second, how many times does the heart beat in a lifetime of n years? (Use 365.25 for days in a year). Write a program to count the number of heart beat.

  Write a class volumeofbox that calculate the volume

write a class VolumeOfBox that calculate the volume by this formula : length * breadth *

  Client function that merges two instances of the sorted list

Write a client function that merges two instances of the Sorted List ADT using the following specification.

  In psuedocode, design an application

In psuedocode, design an application that has an array of at least 20 integers. It should call a module that uses the sequential search algorithm to locate one of the values

  What happens throughout the eleven-day mourning

What happens throughout the eleven-day mourning period after Ashoke's death? How do friends express their sympathy? What kind of diet do Ashima, Gogol, and Sonia follow? What happens on the eleventh day itself?

  How many times would you like to shuffle the sorted list

You are required to implement your designs in C++ Programming Language. Your program should be properly laid out and should be modular, making sure that software engineering aspects of modularity and reusability are fully considered.

  Windows application that function like a banking account

Create a Windows application that function like a banking account register. Separate the business logic from the presentation layer. The graphical user interface should allow user to input the account name, number, and balance.

  Write a c++ program that asks the user for a radius r

Write a c++ program that asks the user for a radius r. The program must include a function called calcwradius that accepts the value of the radius r, and calls the function pi shown below.

  Write another main function create three bank accounts

Write another main function - in this function create three bank accounts, then prompt the user to enter a bank account number, if the account number matches one on the three accounts then display the following menu otherwise allow the user to ent..

  Create a simple text editor that has one large rich text box

Complete the following programming exercise (SIMPLE TEXT EDITOR WITH ONE LARGE RICH TEXT BOX). You will use the OpenFileDialog, StreamReader and StreamWriter objects; the Close, Peek, ReadLine, ShowDialog and WriteLine methods.

  Our string class always deletes the old character buffer

Our String class always deletes the old character buffer and reallocates a new character buffer on assignment or in the copy constructor.

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