Kk thanks

| Blogs > konadora |
|
konadora
Singapore66358 Posts
Kk thanks ![]() | ||
|
qrs
United States3637 Posts
| ||
|
fusionsdf
Canada15390 Posts
On July 10 2009 01:47 Cambium wrote: You need to figure out the inequalities... you have 0 < a < 20 and 20 < a < 25, i.e. you don't cover the case where a == 20. #include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; // assuming you can't weight 0 kg and have 0 cm height ( h = 0 actually give you division by zero exception if( w <= 0 || h <= 0 ) { cout << "Invalid input." << endl; return 0; } else { a = (w/(h*h)); cout << "Your Body Mass Index is " << a << endl; } if ( a > 0 && a < 20 ) cout << "You have a low BMI." << endl; else if ( a > 20 && a < 25 ) cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; return 0; } ewww. I was always taught multiple return statements like that are frowned upon. to be honest, I'm not exactly sure what's considered acceptable in a professional environment. The code (if someone else is wondering) will still work perfectly, its just a matter of style. | ||
|
Cambium
United States16368 Posts
| ||
|
konadora
Singapore66358 Posts
#include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; if (w <= 0 || h <= 0){ cout << "Invalid input." << endl; return 0; } else { a = (w/(h*h)); cout << "Your Body Mass Index is " << a << "." << endl; } if ( a > 0 && a < 20 ) cout << "You have a low BMI." << endl; else if ( a > 20 && a < 25 ) cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; return 0; } And still, if I input two negative values, "You have a low BMI." still shows. What's the problem here? | ||
|
Cambium
United States16368 Posts
| ||
|
konadora
Singapore66358 Posts
Oh, and happy birthday ![]() | ||
|
Cambium
United States16368 Posts
| ||
|
Cambium
United States16368 Posts
| ||
|
konadora
Singapore66358 Posts
#include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; a = (w/(h*h)); if (w > 0, h > 0) cout << "Your Body Mass Index is " << a << endl; else cout << "Invalid input." << endl; if (0 < a < 20, w > 0, h > 0) cout << "You have a low BMI." << endl; else if (20 < a < 25, w > 0, h > 0) cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; return 0; } | ||
|
GogoKodo
Canada1785 Posts
I guess you maybe just pasted the wrong source? | ||
|
konadora
Singapore66358 Posts
| ||
|
GogoKodo
Canada1785 Posts
| ||
|
Cambium
United States16368 Posts
I'm amazed at its ability to interpret equalities and inequalities... The problem with your code is that you don't terminate when you detected invalid inputs. The program continues to run and since two negatives give you a positive, you get "You have a low BMI". After you terminate, you no longer need to check w > 0 and h > 0, as you have already done so. #include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; a = (w/(h*h)); if (w > 0, h > 0) cout << "Your Body Mass Index is " << a << endl; else { cout << "Invalid input." << endl; return 0; } if (0 < a < 20 cout << "You have a low BMI." << endl; else if (20 < a < 25 cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; return 0; } | ||
|
konadora
Singapore66358 Posts
I was wondering but, it's okay to have many 'return 0; ' statements? | ||
|
GogoKodo
Canada1785 Posts
| ||
|
Cambium
United States16368 Posts
There is no way you get anything beyond "invalid input" if you ran the code below... if (w <= 0 || h <= 0){ cout << "Invalid input." << endl; return 0; } catches any negative inputs. + Show Spoiler + #include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; if (w <= 0 || h <= 0){ cout << "Invalid input." << endl; return 0; } else { a = (w/(h*h)); cout << "Your Body Mass Index is " << a << "." << endl; } if ( a > 0 && a < 20 ) cout << "You have a low BMI." << endl; else if ( a > 20 && a < 25 ) cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; return 0; } | ||
|
GogoKodo
Canada1785 Posts
| ||
|
Cambium
United States16368 Posts
#include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; if (w <= 0 || h <= 0){ cout << "Invalid input." << endl; } else { a = (w/(h*h)); cout << "Your Body Mass Index is " << a << "." << endl; if ( a > 0 && a < 20 ) cout << "You have a low BMI." << endl; else if ( a > 20 && a < 25 ) cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; } return 0; } | ||
|
konadora
Singapore66358 Posts
Compiler = Visual C++ 2008 Express Edition I'm using this one #include <iostream> using namespace std; int main() { double w, h; double a; cout << "Please enter your weight (in KG) and height (in meters)." << endl; cin >> w >> h; if (w <= 0 || h <= 0){ cout << "Invalid input." << endl; return 0; } else { a = (w/(h*h)); cout << "Your Body Mass Index is " << a << "." << endl; } if ( a > 0 && a < 20 ) cout << "You have a low BMI." << endl; else if ( a > 20 && a < 25 ) cout << "You are within the healthy BMI range. Congratulations!" << endl; else cout << "You have exceeded the healthy BMI range." << endl; return 0; } The one I posted after that was the original before I modified it | ||
| ||
StarCraft 2 StarCraft: Brood War Shuttle Dota 2Leta Larva Aegong Hyun ToSsGirL Shine Sharp yabsab 910 [ Show more ] League of Legends Counter-Strike Other Games Organizations Dota 2 Other Games StarCraft 2 StarCraft: Brood War
StarCraft 2 • Berry_CruncH48 StarCraft: Brood War• AfreecaTV YouTube • intothetv • Kozan • IndyKCrew • LaughNgamezSOOP • Migwel • sooper7s |
|
Wardi Open
PiGosaur Monday
GSL
WardiTV Team League
The PondCast
WardiTV Team League
Replay Cast
Replay Cast
CranKy Ducklings
WardiTV Team League
[ Show More ] uThermal 2v2 Circuit
BSL
Sparkling Tuna Cup
WardiTV Team League
BSL
Replay Cast
Replay Cast
Wardi Open
Monday Night Weeklies
|
|
|