Hello, I'm trying to make a blood pressure calculator that takes two variables, diastolic & systolic.  The program uses if statements to determine what category the patient's blood pressure is: Low Ideal Pre-High High Program goal,  The user should enter in their two variables, and the program will calculate their blood pressure level based on the chart provided.   The Issue: I've attached a copy of the blood pressure chart on which my program is based. The program works perfectly as long as the diastolic & systolic measurements lie within one of those colored boxes (on the chart image provided) HOWEVER, if the systolic measurement is for example 110, and the Diastolic measurement was 85, the program will fail.    If someone could help me ifix this code it would be greatly appreciated.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Hello,

I'm trying to make a blood pressure calculator that takes two variables, diastolic & systolic. 

The program uses if statements to determine what category the patient's blood pressure is:

  • Low
  • Ideal
  • Pre-High
  • High

Program goal, 

The user should enter in their two variables, and the program will calculate their blood pressure level based on the chart provided.

 

The Issue:

I've attached a copy of the blood pressure chart on which my program is based. The program works perfectly as long as the diastolic & systolic measurements lie within one of those colored boxes (on the chart image provided)

HOWEVER, if the systolic measurement is for example 110, and the Diastolic measurement was 85, the program will fail. 

 

If someone could help me ifix this code it would be greatly appreciated. 

190-
180-
170-
160- High blood pressure
150-
140-
Pre-high blood
130-
pressure
120
110- Ideal blood
100- pressure
90-
80- Low
70-
40 50 60 70 80 90 100
Diastolic (bottom number)
Systolic (top number)
Transcribed Image Text:190- 180- 170- 160- High blood pressure 150- 140- Pre-high blood 130- pressure 120 110- Ideal blood 100- pressure 90- 80- Low 70- 40 50 60 70 80 90 100 Diastolic (bottom number) Systolic (top number)
//
Code to check blood pressure range:
if ((diastolic >= 40 && diastolic <= 60) && (systolic <= 90 && systolic >= 70)){
printf("\t Blood Pressure: Low\n");
}
else if ((diastolic > 60 && diastolic <= 80) && (systolic <= 120 && systolic >= 90)){
printf("\t Blood Pressure: Ideal blood pressure\n");
else if ((diastolic > 80 && diastolic <= 90) && (systolic <= 140 && systolic > 120)){
printf("\t Blood Pressure: Pre-high blood pressure\n");
else if ((diastolic >= 90 && diastolic <= 100) && (systolic <= 190 && systolic >= 140)){
printf("\t Blood Pressure: High blood pressure\n");
else {
printf("\t Error, Please Review Your Diastolic & Systolic Inputs");
Transcribed Image Text:// Code to check blood pressure range: if ((diastolic >= 40 && diastolic <= 60) && (systolic <= 90 && systolic >= 70)){ printf("\t Blood Pressure: Low\n"); } else if ((diastolic > 60 && diastolic <= 80) && (systolic <= 120 && systolic >= 90)){ printf("\t Blood Pressure: Ideal blood pressure\n"); else if ((diastolic > 80 && diastolic <= 90) && (systolic <= 140 && systolic > 120)){ printf("\t Blood Pressure: Pre-high blood pressure\n"); else if ((diastolic >= 90 && diastolic <= 100) && (systolic <= 190 && systolic >= 140)){ printf("\t Blood Pressure: High blood pressure\n"); else { printf("\t Error, Please Review Your Diastolic & Systolic Inputs");
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY