Search:

Type: Posts; User: caprice150

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    1,315

    Input Validation

    void BP::GetPressure()
    {
    cout << "Please enter your Diastolic Pressure readings: ";
    cin >> firstDiastolic >> secondDiastolic >> thirdDiastolic;
    cout << "Please enter your...
  2. Replies
    7
    Views
    7,575

    Got it, duh! Thanks guys.

    Got it, duh! Thanks guys.
  3. Replies
    7
    Views
    7,575

    //bP.h const int SYSTOLIC_LIMIT = 140;...

    //bP.h


    const int SYSTOLIC_LIMIT = 140;
    const int DIASTOLIC_LIMIT = 90;


    class BP
    {
    public:
  4. Replies
    7
    Views
    7,575

    whiteflags, true or false? I have tried both of...

    whiteflags, true or false? I have tried both of those but am not having any luck. Result ends up having the correct value in it until it gets called from my runBP.cpp. I know it must be with my...
  5. Replies
    7
    Views
    7,575

    Function does not take 0 arguments

    //runBP.cpp

    #include "bP.h"




    int main()
    {
    BP test;
Results 1 to 5 of 5