C++ :: Parking Garage Hours For Vehicles And Charge For Them

Oct 1, 2013

Write your question here.

Here is the code

#include <iostream>
using std::cout;
using std::cin;
using std::endl;
using std::fixed;
#include <iomanip>

[Code] ....

My question is how would i put in the total of hours for the vehicles and the total hours for the garage for the vehicles of input... set like this

Car Hours Charge
1 1.5 2.00
2 4.0 2.50
3 24.0 10.00
Total 29.5 14.50 <---This is what i need for my code still

View 1 Replies


ADVERTISEMENT

C/C++ :: Parking Garage Cost Calculator Based On Type Of Vehicle And Time

Nov 3, 2014

There are a few functions for this code and I am not very good with functions yet(we just learned about them last week).

//This program will calculate the cost of using a parking garage
//based on the type of vehicle and the time of parking.
#include<iostream>
#include<stdio.h>
#include<cmath>
#include<string>
using namespace std;
//define rates

[Code] ...

Error List:

Error1error C2100: illegal indirectionc:userscodydesktopgaragecodegaragecodesource.cpp971GarageCode
Error2error C2100: illegal indirectionc:userscodydesktopgaragecodegaragecodesource.cpp1051GarageCode
Error3error C2561: 'main' : function must return a valuec:userscodydesktopgaragecodegaragecodesource.cpp1161GarageCode

[Code] ....

View 2 Replies View Related

C/C++ :: Charge Simulation Method?

Sep 26, 2014

how to write a "charge simulation method" program in C or C++? It's to calculate electric distribution and also electric potential of two different dielectrics. I have attached the diagram of the shape of the electrode that needs to be investigated.

View 1 Replies View Related

C++ :: Program To Find Quarks And Their Charge And Mass - Giving Error

Mar 3, 2013

I have been looking and i'm stuck on this. I wrote this program to find quarks and their charge and mass but i need it to give me 5 different ones. so i made an array but when i run it it gives me this

"Unhandled exception at 0x001631c6 in DiasQuarkP1V0.exe: 0xC0000005: Access violation reading location 0xd5bf0c38." and it shows the xstring library.

this is my main, is their anything wrong with my code?

#include "StdAfx.h"
#include <stdio.h>
#include <string>
using namespace std;
int main() {
Quark solution[5]={};

[Code] .....

View 1 Replies View Related

C/C++ :: Converting Minutes To Hours

Oct 23, 2014

I am currently working on a lab for my intro to programming class and the lab is asking for a long distance call calculator. Based on the times that you start your rate will change. If the call starts from 00:00 to 07:59, Rate = $0.07. If the call starts from 08:00 to 18.59, Rate = $0.12. Lastly if the call starts from 19:00 to 23:59, your rate is $0.28.

Then on the output you must show the start time, end time, rate, and total cost of the call.

My confusion is on the end part of the code (the output).

I know you have to use the % operator to convert minutes to hours, but I don't completely understand it which is why I am here. How does the modulus do that? And how will it go over to the next hour if the call starts at 1:35 and ends after 30 minutes (2:05)?

Here is what I have so far.

#include <iostream>
#include <string>
using namespace std;
int main() {
float callStart, minutes;
double cost;
char choice('Y');
string rate;

[Code] ....

View 5 Replies View Related

C :: Simple Alarm Timer Hat Went Off Every 12 Hours

Nov 2, 2013

In an assignment where they were asked to write a simple alarm that went off every 12 hours. This seemed mildly interesting so I gave it a go. The alarm actually goes off every minute (to have it go off every hour, or every 12, or some other interval more cogs, shafts and pinions would need to be added to the mechanism).

Code:
/* A simple "stopwatch" that prints an alarm message every minute.
*
* 2-Nov-2013
*
*/
#include <stdio.h>
#include <stdbool.h>
#include <time.h>

[Code] .....

View 8 Replies View Related

C :: Make Difference Between Hours And Hour?

Oct 6, 2013

I'm writing a program that converts seconds to hours and minutes - That works fine! But if I write: 3700 seconds It answers That equals to: 1 hours, 1 minutes and 40 seconds.

I now want my program to write 1 hour, 1 minute and 40 seconds.

And if there is no hours at all it should only write 400 seconds equals 6 minutes and 40 seconds.

To sum up: The program shall write hour/hours minute/minutes second/seconds correct.

I've made one succesfull program, but it was written with 27 "if-statements" and I know there is a better way.

Code:

#include <stdio.h>
int
main(void) {

[Code]...

how to make the program know when to write hour or hours?

View 10 Replies View Related

C++ :: Adding Two Time Objects - Error In Sum Of Hours

Sep 20, 2014

The question is to write a program to add two time objects.

Here's what I did:

#include<iostream.h>
#include<conio.h>
class Time {
public:
int hours,minutes,seconds;

[Code] .....

There's an error in sum of hours in the output.

View 5 Replies View Related

C++ :: Payroll Program - Number Of Hours An Employee Worked / Pay Rate

Oct 5, 2014

Write a payroll program that prompts for the number of hours an employee worked, as well as the employee’s pay rate. If the employee worked for 40 hours or less, the gross pay is calculated by multiplying the number of hours worked by the pay rate. If the number of hours worked by the employee exceeds 40 hours, the employee should receive regular pay for the first 40 hours, and receive time-and-a-half pay for the hours in excess of 40. Display the calculated gross pay on the screen.

Continue to prompt for similar data for more employees and have the gross pay of each employee displayed, until there is no more employee data to process. Then display “Good Bye”.

Your solution must be separated into three source files (Interface, Implementation, and Test)

View 3 Replies View Related

C++ :: Program To Take Number Of Hours Worked And Output Workers Gross Pay

Sep 21, 2014

ok so i did a program that will take the number of hours worked in a week annd the number of dependents ans inputs and then outputs the workers gross pay, each withholding amount, and the net take home pay per week.

The Program should come out as this:

Regular Hours :34
Overtime hours: 0
gross pay : $323.00
social tax: 19.38
federal tax: $45.22
Statte tax: $16.15
Number of dependents covered: 2
additional health insurance expence: $0

Net take home pay: $236.25

The employer pay rate is 9.50
the employer worked 34 hours "regular hours 40 or less"
if any hours are paid at over time rate of one and one half time that from the gross pay, 6% of social is with held, 14% form federal income, 5% from state income, 6$ per week from union dues, and if worker has 3 or more covered dependent, then an additional 10$ is wothheld to cover the extra cost of health insurance

heres my program:

#include <iostream>
using namespace std;
int main () {
int regHours; // Regular Hours
float hourlyPay, gross, otime, socialtax, federaltax, statetax, uniondues, dep, health; // gross income, overtime, social tax, federal tax, state tax, union dues, depen covered, health insurance

[Code] .....

the program runs but theres still errors in it, it did not make some of the calculations right.

What formula do I use to calculate overtime hours if there was over time?
What formula do I use to take out union dues from total income?
How to I set the number of independents covered to match the health cost if it was 3 or more?

View 1 Replies View Related

C/C++ :: Creating A Class To Store Value That Represents Number Of Hours / Days Worked

Feb 22, 2014

Create a class to store a value that represents number of hours worked and number of days worked. Must ensure that the two representations are always consistent. I have to create 2 files, I'm pretty sure: a .cpp and a .h

This is what I have so far for my .h file (I know it's NOT functional...yet):

#include <iostream>
using namespace std;
class NumDays {
private:
double hours;
double days;

[Code] ...

I don't know how to start / create this .cpp file to define the variables.

View 3 Replies View Related

C++ :: Calculate User Birthday In Months / Days / Hours And Minutes From Today Date

Jul 24, 2014

The problem is that I need to figure out the user's birthday in months, days, hours, and minutes from today's date.

Here's what I have so far.

#include<iostream>
#include<cmath>
#include<ctime>
using namespace std;
int main() {
int todayDay, todayMonth, todayYear;
int birthDay, birthMonth, birthYear;

[Code] ....

I haven't initialized all the variables, yet. And it's very unfinished. I need to figure out how to convert years from the age into months only. And I need to figure out how to calculate the hours, seconds, and minutes.

View 3 Replies View Related

Visual C++ :: Calculate Amount Paid To Employee Based On Hours Worked And Rate Per Hour

Oct 8, 2013

Write a program in C++ that calculates the amount to be paid to an employee based on the hours worked and rate per hour. A user will enter hours worked and rate per hour for an employee. Your program should have a function payCheck that calculates and returns the amount to be paid. The formula for calculating the salary amount is as follows: for the first 40 hours, the rate is the given rate (the rate that a user has entered); for hours over 40, the rate is 1.5 times the given rate.

I had write my own coding, but it keeps error. it is okay. But i still don't think i could share here? Still running... I will update my coding for you alls to check for any syntax or logic error. The problem is i need to calculate if the employee work for more than 40 hours which 1.5 times.

Code:
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <iostream.h>
using namespace std;
int main(void) {
char *empname, *test, *final_output;

[Code] .....

View 7 Replies View Related

C :: Convert Seconds Into Hours / Minutes And Seconds

Jul 10, 2013

I want to convert seconds into hours, min and seconds. I was able to test it with a small equation turning seconds into hours but now it returns zeros for every entry.

Code:
#include <stdio.h>
void secCount(int *seconds, int *hours, int *min, int *sec);
int main(int argc, const char * argv[]) {
int sec=0, hours=0, min=0, seconds =0;

[Code] .....

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved