<< 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 14
x = x - 1;
and
x -= 1;
and
x--;
--x;
int y = 26;
and
int z;
what values will y and z have after:
z = y++;
double x = 4.44;
and
int y;
what values will x and y have after:
y = --x;
10 / ++(money * 4)
Is this ok? Why or why not?Link to: Animated gif showing a while loop
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_14_Pseudocode.txt
Read and follow the directions below carefully, and perform the steps in the order listed.
Flowchart the following pseudocode:
Assign counter a value of zero
While counter is less than 5Display "I love cookies!"
Increment counterEndwhile
Notification Switch
Would you like to follow the 'Programming fundamentals - a modular structured approach using c++' conversation and receive update notifications?