CCS0003L Demerin (M5-Technical)
CCS0003L Demerin (M5-Technical)
CCS0003L Demerin (M5-Technical)
CCS0006L
(COMPUTER PROGRAMMING 1)
EXERCISE
5
CONDITIONAL CONTROL STRUCTURES
Professor:
Alexander Hernandez
I. PROGRAM OUTCOME/S (PO) ADDRESSED BY THE LABORATORY EXERCISE
Analyze a complex problem and identify and define the computing requirements appropriate to its solution.
[PO: B]
Design, implement and evaluate computer-based systems or applications to meet desired needs and
requirements. [PO: C]
Conditional control statements are at the very core of programming, in almost any language. The idea
behind conditional control is that it allows you to control the flow of the code that is executed based on
different conditions in the program, input taken from the user, the internal state of the machine the
program is running on, etc.
Conditional statements specify whether another statement or block of statements should be executed
or not. These are often called "selection constructs". A conditional expression is an expression that
produces a true or false result. There are three major structures related to the conditional execution of
code in C/C++ - the if statement, the if-else statement, and the switch-case statement.
A. if-statement
Syntax:
if(condition_expression)
statement;
Example:
if (x == 0)
System.out.println(“The no. is zero.”);
B. if-else statement
Syntax:
if(Condition_Expression)
Statement_TRUE;
else
Statement_FALSE;
If the if statement evaluates to true, then all the statements inside the if block are executed and the
else if will be ignored. When the if statement is false, it will then check the condition in the else if
statement.
Example No. 1
if (x >= 0)
System.out.println(“The no. is a whole number.”);
else
System.out.println(“The no. is a negative number.”);
Example No. 2
if (x %2 == 0)
JOptionPane.showMessageDialog(“It is EVEN.”);
else
JOptionPane.showMessageDialog(“It is ODD.”);
Syntax:
if(Condition_Expression1)
Statement1;
else if(Condition_Expression2)
Statement2;
else if(Condition_Expression3)
Statement3;
else
Statement-n;
Reminders:
condition_expression contains the test expression. If the test expression evaluates to true (ie. non-
zero), StatementBlock is executed, otherwise the ElseStatementBlock is executed.
If there is more than one statement to be executed within the ThenStatementBlock or
ElseStatementBlock branch, the blocks must be enclosed with {}'s.
It is not necessary to have an else statement within each if() conditional.
Multiple expressions can be evaluated by using conjunctions (e.g. &&, ||).
Indent your programs to increase readability.
Do not confuse the uses of assignment (=) and equality (==) operators, especially within the test
condition. They can have adverse effects on your program.
D. switch statement
switch(expression) {
case constant_value_1: statement1;
break;
case constant_value_2: statement2;
break;
case constant_value_3: statement3;
break;
case constant_value_n: statement_n;
When defining an expression whose result would lead to a specific program execution, the switch
statement considers that result and executes a statement based on the possible outcome of that
expression, this possible outcome is called a case.
The different outcomes are listed in the body of the switch statement and each case has its own
execution, if necessary. The body of a switch statement is delimited from an opening to a closing curly
brackets: “{“ to “}”.
V. LABORATORY ACTIVITY
Get three exam grades from the user and compute the average of the grades. Output the average of the
three exams. Together with the average, also include a smiley face in the output if the average is greater
than or equal to 70, otherwise output :-(. Note: Use if-statement in the program.
Write a C++ program that will read in month and day (as numerical value). The program will return the
equivalent zodiac sign.
Sample output:
Enter month: 6
Enter day: 25
Zodiac sign for June 25 is Cancer
Using if-ladder statements, compute for the income given the monthly sales. Refer to the table below for
the range.
Using switch statement, write a program that will ask the user which figure he/she wants to solve. The user
should accept lowercase or uppercase as input to the option chosen by the user.
Sample Output:
Volume of Figures
[C] – Cube
[R] – Rectangular Prism
[S] – Sphere
Choose figure: C
For you, which is preferably the most convenient control structure to be used in comparisons, IF-
ELSE or SWITCH?
The choice between switch and if-else depends on the specific scenario. Use switch for
straightforward, discrete value comparisons, and if-else for more complex conditional logic. But
personally, switch is a better option to use, because if statements check all the conditions and then
execute the required condition. this takes more time to compile and hence increases the run time which
is a limitation.
What do you think is the importance of having different if structures such as if statement, if-else
statement and nested-if statement?
Different IF structures are necessary to give flexibility and clarity in decision-making inside code, with
each serving a distinct purpose. The most basic form is the IF statement, which is useful for examining
a single condition and making unambiguous decisions. The IF-ELSE statement is important when there
are two mutually incompatible options because it explicitly describes an other path if the initial condition
is not met, enhancing the program's logical flow.
Then Nested-IF statement is very useful for managing many levels of conditions, allowing for more
sophisticated decision-making procedures. This structure allows programmers to examine additional
conditions depending on the outcomes of prior evaluations, making it essential for managing complex
logic that necessitates extensive condition checking.
VII. REFERENCES
Abraham (2015). Coding for dummies. John Wiley and Sons: Hoboken, NJ
Zak, D (2015). An Introduction to Programming with C++. 8th Edition
Cadenhead, R et. Al. (2016). C++ in 24 Hours, Sams Teach Yourself (6th Edition).Sams Publishing
McGrath, M. (2017). C++ programming in easy steps (5th ed.). Warwickshire, United Kingdom: Easy
Steps Limited
Tale, T. (2016). C++: The Ultimate Beginners Guide to C++ Programing. CreateSpace Independent
Publishing Platform
http://cs.uno.edu/~jaime/Courses/2025/devCpp2025Instructions.html
RUBRIC:
Criteria 4 3 2 1 Score