Java Programming: - Syed Ashik Naina S M
Java Programming: - Syed Ashik Naina S M
Programs
• Hello World
• Check a number if it is a positive number or negative number
• Fibonacci series (with and without user input)(both in “for loop” and “while loop”)
• Transpose of a matrix
Basic information about JAVA
Example
String name = "John";
System.out.println(name);
Syntax for IF… ELSE loops
if (condition1) {
// block of code to be executed if condition1 is true
} else if (condition2) {
// block of code to be executed if the condition1 is false and
condition2 is true
} else {
// block of code to be executed if the condition1 is false and
condition2 is false
}
Example for IF… Else loop
Syntax for “For loop"
For loop
for (initialization; condition;increment/decrement) {
// code block to be executed
}
For-each loop
while (condition) {
// code block to be executed
}
Do-While loop
do {
// code block to be executed
} while (condition);
Example for while loop
Syntax and example for Arrays
Syntax
Example
int[] myNum = {10, 20, 30, 40};
int original[][]={{1,3,4},{2,4,3},{3,4,5}};
int transpose[][]=new int[3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
transpose[i][j]=original[j][i];
}
}
System.out.println("Printing Transpose Matrix:");
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
System.out.print(transpose[i][j]+" ");
}
}
}
}
Home Work
To check whether a
string is palindrome or
not
THANK YOU