Thread: Need help with this cent's calculator!

  1. #1
    Registered User
    Join Date
    Aug 2015
    Posts
    1

    Exclamation Need help with this cent's calculator!

    This is the assignment

    Write a program that will calculate the number of cents in a specific number of nickels,dimes and quarters. The program will perform the following tasks: Display “Welcome to ’s cents calculator” Ask the user to enter the number of nickels Ask the user to enter the number of dimes. Ask the user to enter the number of quarters. Calculate the total number of cents. Display to the monitor the number of cents.

    and this is what I've got so far. When I debug the file it says there are no errors in the code, but there are other types of errors. It let me input the number of nickels, dimes and quarters, but then the program exits and I don't get any results.
    If you guys could help me with this I'd appreciate it.

    Code:
    #include <iostream>
    
    
    using namespace std;
    
    
    int main ()
    
    
    {
        int numberofnickels, numberofdimes, numberofquarters, totalnumberofcents; 
        
        cout << "Welcome to Sofia's cents calculator \n ";
        cout<<"Enter the number of nickels: " ;
        cin>> numberofnickels;
        cout<<"Enter the number of dimes: " ;
        cin>> numberofdimes;
        cout<<"Enter the number of quarters: " ;
        cin>> numberofquarters;
        totalnumberofcents = numberofnickels * 5 + numberofdimes * 10 + numberofquarters * 25;    
        cout << "Your total number of cents is: "  << totalnumberofcents << endl; 
    
    
    return 0;
    
    
    }

  2. #2

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Rounding to the nearest cent problem
    By Ram999 in forum C Programming
    Replies: 6
    Last Post: 02-05-2014, 03:07 PM
  2. How would i round up to or round off to the nearest cent?
    By Justinweq in forum C Programming
    Replies: 6
    Last Post: 11-19-2013, 06:27 PM
  3. CRC Calculator Help
    By Dukefrukem in forum C Programming
    Replies: 2
    Last Post: 09-21-2007, 02:56 PM
  4. Average pay in euros and cent
    By hamsteroid in forum C Programming
    Replies: 2
    Last Post: 03-31-2007, 03:49 PM
  5. Calculator Help!
    By jdude in forum C Programming
    Replies: 4
    Last Post: 10-01-2004, 11:48 AM