SlideShare a Scribd company logo
 java programming- control statements
 java programming- control statements
 java programming- control statements
 java programming- control statements
It is used to take decision based on a single condition
Syntax:
False
True

If condition is True; control will enter the if block
If condition is False; control will execute statement followed by if block
Flow Chart:
True

False
Example: Read marks from user and state only if user is pass.
It is used to take decision based on a single condition
Syntax:
True

False
Flow Chart:
True

False
The if else statement has one condition and two statement blocksTrue block and False block
If condition is True; control will execute the statement in the true block
If condition is False; control will execute the statement in false block
Example: Read marks from user and state whether student is Pass or Fail
It is used to take decision based on two conditions.
Syntax:
Flow Chart:
True

False

If within else
Example:
The Nested if can be inside the if-part or else-part
Syntax:
Flow Chart:
True

False

If within else
Flow Chart:
True

False

If within else
Example:
Example:
A switch statement is used to test many conditions
Syntax:
Flow Chart:

Start

Variable or Expression
Case A Statements

Case A
True
False

Case B Statements

Case B
True
False

Case C Statements

…
True
False

default

End

Default Statements
Flow Chart:

Start

Variable or Expression
Case A
True

Case A Statements
break;

False

Case B
True

Case B Statements
break;

False

…
True

Case C Statements
break;

False

default

End

Default Statements
Example:
 java programming- control statements
 java programming- control statements
 java programming- control statements
-Initialization
-Condition checking
-Execution
-Increment / Decrement
 java programming- control statements
 java programming- control statements
Entry Controlled

Exit Controlled

Condition is checked at the entry of the
loop

Condition is checked at the exit of the
loop

If condition is initially false, the loop
never executes

If condition is initially false, then also the
loop executes at least once

i=1;
while(i==0)
{
System.out.println(“In While loop”);
}
System.out.println(“out of the loop”);

i=1;
do
{
System.out.println(“In While loop”);
} while(i==0);
System.out.println(“out of the loop”);

Output:
Out of the loop

Output:
In while loop
Out of the loop

Example- for, while

Example – do-while
 java programming- control statements
 java programming- control statements
 java programming- control statements
Initialization Statement is used
to initialize a variable/ counter.
The condition statement controls
the execution of loop
The loop executes till
condition statement is true

the
The execution statements are
the main body of a loop
All action statements of loop
are written here
This section is used to
increment or decrement
the variable value
Output
1
i

Variable i in memory
Output
1
i

Variable i in memory

Condition
is True
Output
1
1
i

Variable i in memory

Check it
out here
Check it
out here

Output
1

2
i

Variable i in memory
Output
1
2
i

Variable i in memory

Condition is
checked again
Output
1
2
i

Variable i in memory

Condition
is True
Output
2
i

Variable i in memory

1
2

Check it
out here
Check it
out here
3
i

Variable i in memory

Output
1
2
Output
3
i

Variable i in memory

1
2

Condition is
checked again
Output
3
i

Variable i in memory

1
2

Condition
is True
Output
3
i

Variable i in memory

1
2
3

Check it
out here
Check it
out here
4
i

Variable i in memory

Output
1
2
3
Output
4
i

Variable i in memory

1
2
3

Condition is
checked again
Output
4
i

Variable i in memory

1
2
3

Condition
is True
Output
4
i

Variable i in memory

1
2
3
4

Check it
out here
Check it
out here
5
i

Variable i in memory

Output
1
2
3
4
Output
5
i

Variable i in memory

1
2
3
4

Condition is
checked again
This process will continue till the condition become false

Suppose value of i is 9 now
Output
9
i

Variable i in memory

1
2
3
4
5
6
7
8

Condition
is True
Output
9
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Check it
out here
Check it
out here
10
i

Variable i in memory

Output
1
2
3
4
5
6
7
8
9
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Condition is
checked again
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Condition
is Still True
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Check it
out here
Check it
out here
11
i

Variable i in memory

Output
1
2
3
4
5
6
7
8
9
10
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Condition is
checked again
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Condition
is FALSE
Output
11
i

Variable i in memory

Skip the body of
the lop and
executes the
statement jast
after the loop

1
2
3
4
5
6
7
8
9
10
Final value of i
after the
complete loop Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Final output of
the loop
 java programming- control statements
 java programming- control statements
 java programming- control statements
Initialization Statement is used to initialize a variable/ counter.
The condition statement controls the execution of loop
The loop executes till the condition statement is true
This section is used to increment or decrement the variable value
The execution statements are the main body of a loop
All action statements of loop are written here
Output
1
i

Variable i in memory

Initialization
Output
1
i

Variable i in memory

Condition
is True
Check it
out here
Output
1
1
i

Variable i in memory
Check it
out here

increment
Output
1

2
i

Variable i in memory
Output
1
2
i

Variable i in memory

Condition is
checked again
Output
1
2
i

Variable i in memory

Condition
is True
Output
2
i

Variable i in memory

1
2

Check it
out here
Check it
out here
3
i

Variable i in memory

Output
1
2
Output
3
i

Variable i in memory

1
2

Condition is
checked again
Output
3
i

Variable i in memory

1
2

Condition
is True
Output
3
i

Variable i in memory

1
2
3

Check it
out here
Check it
out here
4
i

Variable i in memory

Output
1
2
3
Output
4
i

Variable i in memory

1
2
3

Condition is
checked again
Output
4
i

Variable i in memory

1
2
3

Condition
is True
Output
4
i

Variable i in memory

1
2
3
4

Check it
out here
Check it
out here
5
i

Variable i in memory

Output
1
2
3
4
Output
5
i

Variable i in memory

1
2
3
4

Condition is
checked again
This process will continue till the condition become false

Suppose value of i is 9 now
Output
9
i

Variable i in memory

1
2
3
4
5
6
7
8

Condition
is True
Output
9
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Check it
out here
Check it
out here
10
i

Variable i in memory

Output
1
2
3
4
5
6
7
8
9
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Condition is
checked again
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Condition
is Still True
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Check it
out here
Check it
out here
11
i

Variable i in memory

Output
1
2
3
4
5
6
7
8
9
10
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Condition is
checked again
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Condition
is FALSE
Output
11
i

Variable i in memory

Skip the body of
the lop and
executes the
statement just
after the loop

1
2
3
4
5
6
7
8
9
10
Final value of i
after the
complete loop Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Final output of
the loop
 java programming- control statements
 java programming- control statements
 java programming- control statements
Initialization Statement is used
to initialize a variable/ counter.
The condition statement controls
the execution of loop
The loop executes till
condition statement is true

the
The execution statements are
the main body of a loop
All action statements of loop
are written here
This section is used to
increment or decrement
the variable value
Output
1
i

Variable i in memory
Output
1
i

Variable i in memory

No condition
checking at entry of
the loop
Output
1
1
i

Variable i in memory

Check it
out here
Check it
out here

Output
1

2
i

Variable i in memory
Output
1
2
i

Variable i in memory

Condition is
checked again
Output
1
2
i

Variable i in memory

Condition
is True
Output
2
i

Variable i in memory

1
2

Check it
out here
Check it
out here
3
i

Variable i in memory

Output
1
2
Output
3
i

Variable i in memory

1
2
Condition is
checked again
Output
3

1
2

i

Variable i in memory

Condition
is True
Output
3
i

Variable i in memory

1
2
3

Check it
out here
Check it
out here
4
i

Variable i in memory

Output
1
2
3
Output
4
i

Variable i in memory

1
2
3

Condition is
checked again
Output
4
i

Variable i in memory

1
2
3

Condition
is True
Output
4
i

Variable i in memory

1
2
3
4

Check it
out here
Check it
out here
5
i

Variable i in memory

Output
1
2
3
4
Output
5
i

Variable i in memory

1
2
3
4

Condition is
checked again
This process will continue till the condition become false

Suppose value of i is 9 now
Output
9
i

Variable i in memory

1
2
3
4
5
6
7
8

Condition
is True
Output
9
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Check it
out here
Check it
out here
10
i

Variable i in memory

Output
1
2
3
4
5
6
7
8
9
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Condition is
checked again
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9

Condition
is Still True
Output
10
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Check it
out here
Check it
out here
11
i

Variable i in memory

Output
1
2
3
4
5
6
7
8
9
10
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Condition is
checked again
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Condition
is FALSE
Output
1
11
2
3
i
4
5
Variable i in memory
6
7
Stop the
8
execution of the
9
loop and
10
executes the
statement just
after the loop
Final value of i
after the
complete loop Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10
Output
11
i

Variable i in memory

1
2
3
4
5
6
7
8
9
10

Final output of
the loop

More Related Content

PPTX
Applets in java
Wani Zahoor
 
PPTX
Operators in java
AbhishekMondal42
 
PPTX
Operators in java
Then Murugeshwari
 
PPTX
Data types in java
HarshitaAshwani
 
PDF
10. switch case
Way2itech
 
PPTX
Pointers in c++
Rajat Busheheri
 
PPT
Strings Functions in C Programming
DevoAjit Gupta
 
PPT
Switch statements in Java
Jin Castor
 
Applets in java
Wani Zahoor
 
Operators in java
AbhishekMondal42
 
Operators in java
Then Murugeshwari
 
Data types in java
HarshitaAshwani
 
10. switch case
Way2itech
 
Pointers in c++
Rajat Busheheri
 
Strings Functions in C Programming
DevoAjit Gupta
 
Switch statements in Java
Jin Castor
 

What's hot (20)

PPT
Memory allocation in c
Prabhu Govind
 
PPT
C#.NET
gurchet
 
PPTX
Java Data Types
Spotle.ai
 
PPT
Operator Overloading
Nilesh Dalvi
 
PPTX
Input Output Management In C Programming
Kamal Acharya
 
PPTX
Decision making statements in C programming
Rabin BK
 
PPTX
Packages in java
Kavitha713564
 
PPTX
Virtual base class
Tech_MX
 
PPT
Java adapter
Arati Gadgil
 
PPTX
Control Statements in Java
Niloy Saha
 
PPT
Method overriding
Azaz Maverick
 
PPTX
Pointers in c++
sai tarlekar
 
PDF
JavaScript - Chapter 5 - Operators
WebStackAcademy
 
PPTX
Sparse matrix
dincyjain
 
PPT
Java interfaces
Raja Sekhar
 
PPTX
The Switch Statement in java
Talha Saleem
 
PDF
Unit ii chapter 2 Decision making and Branching in C
Sowmya Jyothi
 
PPTX
Java Final Keyword
Ducat India
 
PPTX
Static Members-Java.pptx
ADDAGIRIVENKATARAVIC
 
PPS
Wrapper class
kamal kotecha
 
Memory allocation in c
Prabhu Govind
 
C#.NET
gurchet
 
Java Data Types
Spotle.ai
 
Operator Overloading
Nilesh Dalvi
 
Input Output Management In C Programming
Kamal Acharya
 
Decision making statements in C programming
Rabin BK
 
Packages in java
Kavitha713564
 
Virtual base class
Tech_MX
 
Java adapter
Arati Gadgil
 
Control Statements in Java
Niloy Saha
 
Method overriding
Azaz Maverick
 
Pointers in c++
sai tarlekar
 
JavaScript - Chapter 5 - Operators
WebStackAcademy
 
Sparse matrix
dincyjain
 
Java interfaces
Raja Sekhar
 
The Switch Statement in java
Talha Saleem
 
Unit ii chapter 2 Decision making and Branching in C
Sowmya Jyothi
 
Java Final Keyword
Ducat India
 
Static Members-Java.pptx
ADDAGIRIVENKATARAVIC
 
Wrapper class
kamal kotecha
 
Ad

Viewers also liked (20)

PDF
32.java input-output
santosh mishra
 
PPTX
Control flow statements in java
yugandhar vadlamudi
 
PPTX
Multi-threaded Programming in JAVA
Vikram Kalyani
 
PPTX
Java string handling
Salman Khan
 
PPT
Operating System Chapter 4 Multithreaded programming
guesta40f80
 
PPTX
Exception handling in Java
Abhishek Pachisia
 
PPTX
Operators in java
yugandhar vadlamudi
 
PPTX
Arrays in Java
Abhilash Nair
 
PPT
Java inheritance
Arati Gadgil
 
PPT
Exception handling in java
Pratik Soares
 
PPT
Java: Inheritance
Tareq Hasan
 
PPT
Java Basics
shivamgarg_nitj
 
PDF
Java exception handling ppt
JavabynataraJ
 
PPT
Packages and interfaces
vanithaRamasamy
 
PPTX
Inheritance in JAVA PPT
Pooja Jaiswal
 
PPTX
Classes, objects in JAVA
Abhilash Nair
 
PPT
Core java concepts
Ram132
 
PPS
Java Exception handling
kamal kotecha
 
PPTX
Inheritance
Sapna Sharma
 
PPT
Java basic
Sonam Sharma
 
32.java input-output
santosh mishra
 
Control flow statements in java
yugandhar vadlamudi
 
Multi-threaded Programming in JAVA
Vikram Kalyani
 
Java string handling
Salman Khan
 
Operating System Chapter 4 Multithreaded programming
guesta40f80
 
Exception handling in Java
Abhishek Pachisia
 
Operators in java
yugandhar vadlamudi
 
Arrays in Java
Abhilash Nair
 
Java inheritance
Arati Gadgil
 
Exception handling in java
Pratik Soares
 
Java: Inheritance
Tareq Hasan
 
Java Basics
shivamgarg_nitj
 
Java exception handling ppt
JavabynataraJ
 
Packages and interfaces
vanithaRamasamy
 
Inheritance in JAVA PPT
Pooja Jaiswal
 
Classes, objects in JAVA
Abhilash Nair
 
Core java concepts
Ram132
 
Java Exception handling
kamal kotecha
 
Inheritance
Sapna Sharma
 
Java basic
Sonam Sharma
 
Ad

Similar to java programming- control statements (20)

PDF
PROBLEM SOLVING USING NOW PPSC- UNIT -2.pdf
JNTUK KAKINADA
 
PPT
Control Statements, Array, Pointer, Structures
indra Kishor
 
PPTX
controlStatements.pptx
MattMarino13
 
PDF
UNIT 2 PPT.pdf
DhanushKumar610673
 
PDF
Lecture15 comparisonoftheloopcontrolstructures.ppt
eShikshak
 
PPT
Mesics lecture 7 iteration and repetitive executions
eShikshak
 
PPT
M C6java6
mbruggen
 
PDF
cpu.pdf
RAJCHATTERJEE24
 
PPTX
control statements
Azeem Sultan
 
PPTX
While , For , Do-While Loop
Abhishek Choksi
 
PDF
OIT 116 LOOPS AND CONDITION STATEMENTS.pdf
Carlos701746
 
PPTX
1 introduction to c program
NishmaNJ
 
PPTX
Switch case and looping jam
JamaicaAubreyUnite
 
PDF
Repetations in C
yndaravind
 
PPTX
Control statements in java
Madishetty Prathibha
 
PPT
Final requirement
Faye Salosagcol
 
PPTX
Pj01 5-exceution control flow
SasidharaRaoMarrapu
 
PPT
C statements.ppt presentation in c language
chintupro9
 
PDF
nuts and bolts of c++
guestfb6ada
 
PDF
Flow control in c++
Subhasis Nayak
 
PROBLEM SOLVING USING NOW PPSC- UNIT -2.pdf
JNTUK KAKINADA
 
Control Statements, Array, Pointer, Structures
indra Kishor
 
controlStatements.pptx
MattMarino13
 
UNIT 2 PPT.pdf
DhanushKumar610673
 
Lecture15 comparisonoftheloopcontrolstructures.ppt
eShikshak
 
Mesics lecture 7 iteration and repetitive executions
eShikshak
 
M C6java6
mbruggen
 
control statements
Azeem Sultan
 
While , For , Do-While Loop
Abhishek Choksi
 
OIT 116 LOOPS AND CONDITION STATEMENTS.pdf
Carlos701746
 
1 introduction to c program
NishmaNJ
 
Switch case and looping jam
JamaicaAubreyUnite
 
Repetations in C
yndaravind
 
Control statements in java
Madishetty Prathibha
 
Final requirement
Faye Salosagcol
 
Pj01 5-exceution control flow
SasidharaRaoMarrapu
 
C statements.ppt presentation in c language
chintupro9
 
nuts and bolts of c++
guestfb6ada
 
Flow control in c++
Subhasis Nayak
 

More from jyoti_lakhani (20)

PPSX
CG02 Computer Graphic Systems.ppsx
jyoti_lakhani
 
PPTX
Projections.pptx
jyoti_lakhani
 
PPSX
CG04 Color Models.ppsx
jyoti_lakhani
 
PPSX
CG03 Random Raster Scan displays and Color CRTs.ppsx
jyoti_lakhani
 
PPTX
CG02 Computer Graphic Systems.pptx
jyoti_lakhani
 
PPSX
CG01 introduction.ppsx
jyoti_lakhani
 
PDF
Doubly linked list
jyoti_lakhani
 
PDF
Double ended queue
jyoti_lakhani
 
PDF
Tree terminology and introduction to binary tree
jyoti_lakhani
 
PDF
Priority queue
jyoti_lakhani
 
PDF
Ds006 linked list- delete from front
jyoti_lakhani
 
PPSX
Ds06 linked list- insert a node after a given node
jyoti_lakhani
 
PPSX
Ds06 linked list- insert a node at end
jyoti_lakhani
 
PPSX
Ds06 linked list- insert a node at beginning
jyoti_lakhani
 
PPSX
Ds06 linked list- intro and create a node
jyoti_lakhani
 
PPSX
Ds04 abstract data types (adt) jyoti lakhani
jyoti_lakhani
 
PPSX
Ds03 part i algorithms by jyoti lakhani
jyoti_lakhani
 
PPSX
Ds03 algorithms jyoti lakhani
jyoti_lakhani
 
PPSX
Ds02 flow chart and pseudo code
jyoti_lakhani
 
PPSX
Ds01 data structure introduction - by jyoti lakhani
jyoti_lakhani
 
CG02 Computer Graphic Systems.ppsx
jyoti_lakhani
 
Projections.pptx
jyoti_lakhani
 
CG04 Color Models.ppsx
jyoti_lakhani
 
CG03 Random Raster Scan displays and Color CRTs.ppsx
jyoti_lakhani
 
CG02 Computer Graphic Systems.pptx
jyoti_lakhani
 
CG01 introduction.ppsx
jyoti_lakhani
 
Doubly linked list
jyoti_lakhani
 
Double ended queue
jyoti_lakhani
 
Tree terminology and introduction to binary tree
jyoti_lakhani
 
Priority queue
jyoti_lakhani
 
Ds006 linked list- delete from front
jyoti_lakhani
 
Ds06 linked list- insert a node after a given node
jyoti_lakhani
 
Ds06 linked list- insert a node at end
jyoti_lakhani
 
Ds06 linked list- insert a node at beginning
jyoti_lakhani
 
Ds06 linked list- intro and create a node
jyoti_lakhani
 
Ds04 abstract data types (adt) jyoti lakhani
jyoti_lakhani
 
Ds03 part i algorithms by jyoti lakhani
jyoti_lakhani
 
Ds03 algorithms jyoti lakhani
jyoti_lakhani
 
Ds02 flow chart and pseudo code
jyoti_lakhani
 
Ds01 data structure introduction - by jyoti lakhani
jyoti_lakhani
 

Recently uploaded (20)

PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
Doc9.....................................
SofiaCollazos
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PDF
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
This slide provides an overview Technology
mineshkharadi333
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Doc9.....................................
SofiaCollazos
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
CIFDAQ's Market Wrap : Bears Back in Control?
CIFDAQ
 

java programming- control statements