<< Chapter < Page | Chapter >> Page > |
With 100% accuracy during a: memory building activity, exercises, lab assignment, problems, or timed quiz/exam; the student is expected to:
Link to: MBA 11
Link to: Animated gif showing if then else
Link to: Manipulation of Data Part 2
Depending on your compiler/IDE, you should decide where to download and store source code files for processing. Prudence dictates that you create these folders as needed prior to downloading source code files. A suggested sub-folder for the Bloodshed Dev-C++ 5 compiler/IDE might be named:
If you have not done so, please create the folder(s) and/or sub-folder(s) as appropriate.
Download and store the following file(s) to your storage device in the appropriate folder(s). You may need to right click on the link and select "Save Target As" in order to download the file.
Download from Connexions: Lab_11_Pseudocode.txt
Read and follow the directions below carefully, and perform the steps in the order listed.
Create a table with the six relational operators and their meanings.
Explain why we are using the "if then else" to manipulate the input data in the example below.
cout<<"\nEnter one side of the rectangle --------->: " ;
cin>>side1;
cout<<"\nEnter the other side of the rectangle --->: " ;
cin>>side2;
if (side1>side2)
{length = side1;
width = side2;}
else{
length = side2;width = side1;
}
Notification Switch
Would you like to follow the 'Programming fundamentals - a modular structured approach using c++' conversation and receive update notifications?