SlideShare a Scribd company logo
CONDITIONAL
STRUCTURE
IN
C++
.
INTRODUCTION
Conditional statement are
used to execute a set of
statements on some
conditions. It provide a unit of
block in which we can either
one statement or more than
one statements.
IF THE GIVEN
CONDITION IS TRUE
THAN THE SET OF
STATEMENT ARE
EXECUTED
OTHERWISE BODY IS
SKIPPED….
IF CONDITION
IT IS CONDITIONAL STATEMENT,
WHICH IS USED TO EXECUTE A
SET OF STATEMENT ON SOME
CONDITIONS. THE CONDITION
MUST BE OF “BOOLEAN” TYPE
AN EXPRESSION, WHICH
RETURNS ONLY TWO
VALUE EITHER TRUE OR
FALSE, IS KNOWN AS
BOOLEAN TYPE
EXPRESSION.
SYNTAX:
THE SYNTAX OF IF STATEMENT
IS AS FOLLOWS:
IF(CONDITION)
STATEMENT;
THE ABOVE SYNTAX IS USED
FOR SINGLE STATEMENT. A SET
OF STATEMENT CAN ALSO BE
MADE CONDITIONAL.
IN THIS CASE, THESE STATEMENT
ARE WRITTEN IN CURLY BRACES.
THE SET OF STATEMENTS IS ALSO
CALLED COMPOUND
STATEMENT.
THE SYNTAX FOR COMPOUND
STATEMENTS IN IF STATEMENT IS
AS FOLLOWS:
IF(CONDITION)
{
STATEMENT 1;
STATEMENT 2;
STATEMENT 3;
STATEMENT 4;
.
.
.
STATEMENT N;
}
EXAMPLE:
WRITE A PROGRAM THAT
INPUTS TWO NUMBERS AND
FINDS WHETHER BOTH ARE
EQUAL.
#INCLUDE <IOSTREAM.H>
#INCLUDE <CONIO.H>
VOID MAIN()
CLRSCR();
INT A,B;
COUT<<’’ENTER A NUMBER:’’;
CIN>>A;
COUT<<’’ENTER A NUMBER:’’;
CIN>>B;
IF(A==B)
COUT<<’’BOTH
NUMBERS ARE EQUAL.’’;
GETCH();
}
OUTPUT:
ENTER A NUMBER: 15
ENTER A NUMBER: 15
BOTH NUMBERS ARE EQUAL
IF-ELSE CONDITION
IT IS KNOWN AS DOUBLE
BLOCKED CONDITIONAL
STATEMENT. IT MEANS, IT
HAS TRUE PARTS AS WELL
AS FALSE PART.
IF THE GIVEN CONDITION IS
TRUE THEN THE TRUE PART
IS EXECUTED OTHERWISE
FALSE PART IS EXECUTED.
SYNTAX:
IF(CONDITION)
STATEMENT;
ELSE
STATEMENT;
TWO OR MORE STATEMENTS ARE
WRITTEN IN CURLY
BRACKETS{}.THE SYNTAX FOR
COMPOUND STATEMENTS IN
STATEMENT IS AS FOLLOWS:
IF(CONDITION)
{
STATEMENT 1;
STATEMENT 2;
.
.
STATEMENT N;
}
ELSE
{
STATEMENT 1;
STATEMENT 2;
.
.
STATEMENT N;
}
EXAMPLE:
WRITE A PROGRAM THAT INPUTS
A NUMBER AND FINDS WHETHER
IT IS EVEN OR ODD USING IF-ELSE
STRUCTURE.
#INCLUDE<IOSTREAM.H>
#INCLUDE <CONIO.H>
VOID MAIN()
{
CLRSCR();
INT N;
COUT<<’’ENTER A NUMBER:’’;
CIN>>N;
IF(N%2==0)
COUT<<N<<’’IS EVEN.’’;
else
COUT<<N<<’’IS
ODD.’’;
GETCH();
}
OUTPUT:
ENTER A NUMBER: 10
10 IS EVEN.
SWITCH
STATEMENT
THE SWITCH STATEMENT IS
ANOTHER CONDITIONAL
STRUCTURE. IT IS A GOOD
ALTERNATIVE OF NESTED IF-
ELSE.
IT CAN BE USED EASILY
WHEN THERE ARE MANY
CHOICES AVAILABLE AND
ONLY ONE SHOULD BE
EXECUTED.
SYNTAX:
SWITCH(EXPRESSION)
{
(INTEGER OR CHARACTER
CONSTANT)
CASE CONSTANT 1:
STATEMENT(S);
BREAK;
CASE CONSTANT 2:
STATEMENT(S);
BREAK;
.
.
.
CASE CONSTANT N:
STATEMENT(S);
BREAK;
WRITE A PROGRAM THAT
INPUTS NUMBER OF
WEEK’S DAY AND
DISPLAY THE NAME OF
THE DAY.
#INCLUDE<IOSTREAM.H>
#INCLUDE<CONIO.H>
VOID MAIN()
{
CLRSCR ();
INT N;
COUT << “ENTER A NUMBER OF A
WEEKDAY.”;
CIN>>N;
SWITCH (N)
{
CASE 1:
COUT << “FRIDAY”;
BREAK;
CASE 1:
COUT << “FRIDAY”;
BREAK;
CASE 2:
COUT << “SATURDAY”;
BREAK;
CASE 3:
COUT << “SUNDAY”;
BREAK;
CASE 4:
COUT<< “MONDAY”;
BREAK;
CASE 5:
COUT<< “TUESDAY”;
BREAK;
CASE 6:
COUT<<“WEDNESDAY”;
BREAK;
CASE 7:
COUT<<
“THURSDAY”;
BREAK;
DEFAULT:
COUT<< “INVALID
NUMBER”;
}
GETCH ();
}
GOTO STATEMENT
THE GOTO STATEMENT IS
USED TO MOVE THE
CONTROL DIRECTLY TO A
PARTICULAR LOCATION OF
THE PROGRAM BY USING
LABEL. A LABEL IS A NAME
GIVEN TO A PARTICULAR
LINE OF THE PROGRAM.
A LABEL IS CREATED WITH A VALID
IDENTIFIER FOLLOWED BY A
COLON (:)
SYNTAX:
GOTO LABEL;
THE “LABEL” INDICATES THE
LABEL TO WHICH THE
CONTROL IS TRANSFERRED.
EXAMPLE:
WRITE A PROGRAM THAT
DISPLAYS “C++” FIVE TIMES
USING GOTO STATEMENT.
#INCLUDE<IOSTREAM.H>
#INCLUDE<CONIO.H>
VOID MAIN()
{
CLRSCR();
INT N=1;
LOOP:
COUT<<N<<“C++”<<ENDL;
N++;
IF(N<=5) GOTO LOOP;
COUT<<“END OF PROGRAM”;
GETCH();
}
Conditional statement c++

More Related Content

What's hot

Control Flow Statements
Control Flow Statements Control Flow Statements
Control Flow Statements
Tarun Sharma
 
data types in C programming
data types in C programmingdata types in C programming
data types in C programming
Harshita Yadav
 
Operators and expressions in c language
Operators and expressions in c languageOperators and expressions in c language
Operators and expressions in c language
tanmaymodi4
 
Tokens in C++
Tokens in C++Tokens in C++
Tokens in C++
Mahender Boda
 
10. switch case
10. switch case10. switch case
10. switch case
Way2itech
 
Control statements in c
Control statements in cControl statements in c
Control statements in c
Sathish Narayanan
 
Branching statements
Branching statementsBranching statements
Branching statements
ArunMK17
 
Variables in C Programming
Variables in C ProgrammingVariables in C Programming
Variables in C Programming
programming9
 
Data types in c++
Data types in c++Data types in c++
Data types in c++
Venkata.Manish Reddy
 
Operators and expressions in C++
Operators and expressions in C++Operators and expressions in C++
Operators and expressions in C++
Neeru Mittal
 
Presentation on C Switch Case Statements
Presentation on C Switch Case StatementsPresentation on C Switch Case Statements
Presentation on C Switch Case Statements
Dipesh Pandey
 
Basics of c++ Programming Language
Basics of c++ Programming LanguageBasics of c++ Programming Language
Basics of c++ Programming Language
Ahmad Idrees
 
Operators in C Programming
Operators in C ProgrammingOperators in C Programming
Operators in C Programming
programming9
 
C Tokens
C TokensC Tokens
C Tokens
Ripon Hossain
 
FUNCTIONS IN c++ PPT
FUNCTIONS IN c++ PPTFUNCTIONS IN c++ PPT
FUNCTIONS IN c++ PPT
03062679929
 
Variables in C++, data types in c++
Variables in C++, data types in c++Variables in C++, data types in c++
Variables in C++, data types in c++
Neeru Mittal
 
Introduction to Selection control structures in C++
Introduction to Selection control structures in C++ Introduction to Selection control structures in C++
Introduction to Selection control structures in C++
Neeru Mittal
 
Conditional Statement in C Language
Conditional Statement in C LanguageConditional Statement in C Language
Conditional Statement in C Language
Shaina Arora
 
Control Statements in Java
Control Statements in JavaControl Statements in Java
Control Statements in Java
Niloy Saha
 

What's hot (20)

Control Flow Statements
Control Flow Statements Control Flow Statements
Control Flow Statements
 
data types in C programming
data types in C programmingdata types in C programming
data types in C programming
 
Operators and expressions in c language
Operators and expressions in c languageOperators and expressions in c language
Operators and expressions in c language
 
Tokens in C++
Tokens in C++Tokens in C++
Tokens in C++
 
10. switch case
10. switch case10. switch case
10. switch case
 
Control statements in c
Control statements in cControl statements in c
Control statements in c
 
Branching statements
Branching statementsBranching statements
Branching statements
 
Variables in C Programming
Variables in C ProgrammingVariables in C Programming
Variables in C Programming
 
Data types in c++
Data types in c++Data types in c++
Data types in c++
 
Operators and expressions in C++
Operators and expressions in C++Operators and expressions in C++
Operators and expressions in C++
 
Presentation on C Switch Case Statements
Presentation on C Switch Case StatementsPresentation on C Switch Case Statements
Presentation on C Switch Case Statements
 
Basics of c++ Programming Language
Basics of c++ Programming LanguageBasics of c++ Programming Language
Basics of c++ Programming Language
 
Operators in C Programming
Operators in C ProgrammingOperators in C Programming
Operators in C Programming
 
C Tokens
C TokensC Tokens
C Tokens
 
FUNCTIONS IN c++ PPT
FUNCTIONS IN c++ PPTFUNCTIONS IN c++ PPT
FUNCTIONS IN c++ PPT
 
Variables in C++, data types in c++
Variables in C++, data types in c++Variables in C++, data types in c++
Variables in C++, data types in c++
 
Introduction to Selection control structures in C++
Introduction to Selection control structures in C++ Introduction to Selection control structures in C++
Introduction to Selection control structures in C++
 
Conditional Statement in C Language
Conditional Statement in C LanguageConditional Statement in C Language
Conditional Statement in C Language
 
Control structures in C
Control structures in CControl structures in C
Control structures in C
 
Control Statements in Java
Control Statements in JavaControl Statements in Java
Control Statements in Java
 

Similar to Conditional statement c++

Programming (if else)
Programming (if else)Programming (if else)
Programming (if else)
Papon Sarker
 
C Control Statements.docx
C Control Statements.docxC Control Statements.docx
C Control Statements.docx
JavvajiVenkat
 
Module 2 - Control Structures c programming.pptm.pdf
Module 2 - Control Structures c programming.pptm.pdfModule 2 - Control Structures c programming.pptm.pdf
Module 2 - Control Structures c programming.pptm.pdf
SudipDebnath20
 
CONTROL STMTS.pptx
CONTROL STMTS.pptxCONTROL STMTS.pptx
CONTROL STMTS.pptx
JavvajiVenkat
 
Basics of Control Statement in C Languages
Basics of Control Statement in C LanguagesBasics of Control Statement in C Languages
Basics of Control Statement in C Languages
Chandrakant Divate
 
Flow of control C ++ By TANUJ
Flow of control C ++ By TANUJFlow of control C ++ By TANUJ
Flow of control C ++ By TANUJ
TANUJ ⠀
 
3 chapter three - part 1.pdf
3 chapter three - part 1.pdf3 chapter three - part 1.pdf
3 chapter three - part 1.pdf
AbenezerAsefa1
 
Flow of Control
Flow of ControlFlow of Control
Flow of Control
Praveen M Jigajinni
 
Control Statement programming
Control Statement programmingControl Statement programming
Control Statement programming
University of Potsdam
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
enidegmossu
 
C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)C Constructs (C Statements & Loop)
Decision Making and Branching in C
Decision Making and Branching  in CDecision Making and Branching  in C
Decision Making and Branching in C
RAJ KUMAR
 
CHAPTER-3a.ppt
CHAPTER-3a.pptCHAPTER-3a.ppt
CHAPTER-3a.ppt
Tekle12
 
CH-4 (1).pptx
CH-4 (1).pptxCH-4 (1).pptx
CH-4 (1).pptx
Mehul Desai
 
FP 201 Unit 3
FP 201 Unit 3 FP 201 Unit 3
FP 201 Unit 3 rohassanie
 
Btech i pic u-3 handling input output and control statements
Btech i pic u-3 handling input output and control statementsBtech i pic u-3 handling input output and control statements
Btech i pic u-3 handling input output and control statements
Rai University
 
handling input output and control statements
 handling input output and control statements handling input output and control statements
handling input output and control statements
Rai University
 
exp227-jan-170127160848 (3) (1).pdf
exp227-jan-170127160848 (3) (1).pdfexp227-jan-170127160848 (3) (1).pdf
exp227-jan-170127160848 (3) (1).pdf
mounikanarra3
 
Mca i pic u-3 handling input output and control statements
Mca i pic u-3 handling input output and control statementsMca i pic u-3 handling input output and control statements
Mca i pic u-3 handling input output and control statements
Rai University
 

Similar to Conditional statement c++ (20)

Programming (if else)
Programming (if else)Programming (if else)
Programming (if else)
 
C Control Statements.docx
C Control Statements.docxC Control Statements.docx
C Control Statements.docx
 
Module 2 - Control Structures c programming.pptm.pdf
Module 2 - Control Structures c programming.pptm.pdfModule 2 - Control Structures c programming.pptm.pdf
Module 2 - Control Structures c programming.pptm.pdf
 
Flow of control ppt
Flow of control pptFlow of control ppt
Flow of control ppt
 
CONTROL STMTS.pptx
CONTROL STMTS.pptxCONTROL STMTS.pptx
CONTROL STMTS.pptx
 
Basics of Control Statement in C Languages
Basics of Control Statement in C LanguagesBasics of Control Statement in C Languages
Basics of Control Statement in C Languages
 
Flow of control C ++ By TANUJ
Flow of control C ++ By TANUJFlow of control C ++ By TANUJ
Flow of control C ++ By TANUJ
 
3 chapter three - part 1.pdf
3 chapter three - part 1.pdf3 chapter three - part 1.pdf
3 chapter three - part 1.pdf
 
Flow of Control
Flow of ControlFlow of Control
Flow of Control
 
Control Statement programming
Control Statement programmingControl Statement programming
Control Statement programming
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)
 
Decision Making and Branching in C
Decision Making and Branching  in CDecision Making and Branching  in C
Decision Making and Branching in C
 
CHAPTER-3a.ppt
CHAPTER-3a.pptCHAPTER-3a.ppt
CHAPTER-3a.ppt
 
CH-4 (1).pptx
CH-4 (1).pptxCH-4 (1).pptx
CH-4 (1).pptx
 
FP 201 Unit 3
FP 201 Unit 3 FP 201 Unit 3
FP 201 Unit 3
 
Btech i pic u-3 handling input output and control statements
Btech i pic u-3 handling input output and control statementsBtech i pic u-3 handling input output and control statements
Btech i pic u-3 handling input output and control statements
 
handling input output and control statements
 handling input output and control statements handling input output and control statements
handling input output and control statements
 
exp227-jan-170127160848 (3) (1).pdf
exp227-jan-170127160848 (3) (1).pdfexp227-jan-170127160848 (3) (1).pdf
exp227-jan-170127160848 (3) (1).pdf
 
Mca i pic u-3 handling input output and control statements
Mca i pic u-3 handling input output and control statementsMca i pic u-3 handling input output and control statements
Mca i pic u-3 handling input output and control statements
 

Recently uploaded

Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
Col Mukteshwar Prasad
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 

Recently uploaded (20)

Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 

Conditional statement c++