Recent content by asher

  1. A

    Calculating Blood Alcohol Content (BAC)

    This will correct the problem! #include<stdio.h> #define POUNDS_PER_KILO 2.2406 #define OZ_ALCOHOL_PER_DRINK 0.54 #define PERCENT_WATER_MALE 0.58 #define PERCENT_WATER_FEMALE 0.49 #define GRAMS_ALC_PER_OZ 23.36 #define PERCENT_WATER_BLOOD 0.806 #define METABOLISM_RATE 0.012 int...
  2. A

    C/C++ Learn C++ for Loop: Finding the Total of a Series with Example Code

    This will correct the problem for you! #include<stdio.h> #define POUNDS_PER_KILO 2.2406 #define OZ_ALCOHOL_PER_DRINK 0.54 #define PERCENT_WATER_MALE 0.58 #define PERCENT_WATER_FEMALE 0.49 #define GRAMS_ALC_PER_OZ 23.36 #define PERCENT_WATER_BLOOD 0.806 #define METABOLISM_RATE 0.012...
Back
Top