Search:

Type: Posts; User: Devon Smith

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    2,217

    Creating A Menu

    The menu I created for this project isn't seamless in the slightest.
    Below are the assignment guidelines, current code, then questions.
    Sample Output of teacher's program last.


    A. int main()...
  2. Replies
    16
    Views
    4,273

    balance = checking + deposit isn't the ideal...

    balance = checking + deposit isn't the ideal solution


    checking = 850.00
    Deposit = 100

    950 = 850 + 100

    the math is right but the new balance is saved under the variable balance.
    so next...
  3. Replies
    16
    Views
    4,273

    #include #include #include...

    #include <stdio.h>
    #include <math.h>
    #include <ctype.h>


    #define _CRT_SECURE_NO_WARNINGS



    // Displays the list of options available
  4. Replies
    16
    Views
    4,273

    When scanning a value I used %lf (%d scans ints...

    When scanning a value I used %lf (%d scans ints not doubles, beware) for printf I recommened %.2lf so it doesn't display ton zeros, just the 10s and 1s place.

    Have you tested to make sure when you...
  5. Replies
    6
    Views
    1,126

    GetBalance(credit); Hard to believe that was...

    GetBalance(credit);


    Hard to believe that was all that was holding me back.



    GetBalance(check); GetBalance(savings); GetBalance(credit); //each inside designated case statement

    void...
  6. Replies
    6
    Views
    1,126

    Without declaring the variable 'double', I get a...

    Without declaring the variable 'double', I get a laundry list of failures and compiling errors.

    GetBalance is how the assignment words the user-defined function, so that's not changing.


    ...
  7. Replies
    6
    Views
    1,126

    I haven't heard from the person, and don't see...

    I haven't heard from the person, and don't see any help that pertained to what I need assistance with on. I struck out on my own and just need this last part.
  8. Replies
    6
    Views
    1,126

    Function Definition Help

    So this is a project that requires us to use 6 user-defined functions and pointers. It is to basically work like an ATM. The program will need to withdraw, deposit, and or check the balance of the...
  9. Replies
    16
    Views
    4,273

    I'm working on the same project. If you have a...

    I'm working on the same project. If you have a specific question I can help answer those. I'll be working (hopefully finishing) it tonight.
    As a disclaimer, I am not a coding wizard.
Results 1 to 9 of 9