Search Logic Blocks

Friday, July 31, 2020

Java: Let's Practice - Convert Binary Numbers to Decimal Numbers and Decimal Numbers to Binary Numbers

We already know what are the bits, bytes and binary values. And we also know how to convert binary numbers to decimal numbers and decimal numbers to binary numbers. Let's write a program to convert user entered binary number into decimal number and  decimal number into binary number.

Convert Binary Number To Decimal Number
Here is the example for the conversion from binary number to decimal number -

10100101
1 x 270 x 261 x 250 x 240 x 231 x 220 x 211 x 20
12803200401

Decimal Value for 1010 0101 is = 128 + 32 + 4 + 1 = 165.

Let's establish the logic behind this conversion. 
  1. First, we need to have binary number as a long data type to have enough bits in the binary value. Long binaryVal = 10100101
  2. The program will read every bit of the binary value from right to left in while loop. We can get each bit by using the remainder operator (binaryVal % 10) and convert it to integer as the data type is Long
  3. The remainder will be multiplied by 2 to the power of bit position from right to left. The product will be added to the old product.
  4. New binary value will be (binaryVal / 10) and go back to while loop. Loop will terminate when binaryVal is 0.
Loop Logic -
10100101 % 10 => 1 => 1x2=> 1 and 10100101 / 10 => 1010010
1010010 % 10 => 0 => 0x2=> 0 and 1010010 / 10 => 101001
101001 % 10 => 1 => 1x22 => 4 and 101001 / 10 => 10100
10100 % 10 => 0 => 0x23 => 0 and 10100 / 10 => 1010
1010 % 10 => 0 => 0x2 => 0 and 1010 / 10 => 101
101 % 10 => 1 => 1x2 => 32 and 101 / 10 => 10 
10 % 10 => 0 => 0x2 => 0 and 10 / 10 => 1 
1 % 10 => 1 => 1x2 => 128 and 1 / 10 => 0

1 + 0 + 4 + 0 + 0 + 32 + 0 + 128 = 165

Here is the program for conversion binary number to decimal number. The program has an extra method to calculate the power of number. Java has a built-in method Java.lang.Math.pow() but only for parameters as double data type. So, I wrote a method for int data type - int calcPower(int no1, int no2)
import java.util.Scanner;

public class BinaryToDecimal {
public static void main(String args[]) {
System.out.println("Enter the binary value");
Scanner sc = new Scanner(System.in);
Long binaryVal = sc.nextLong();

int decVal = 0;
int rem, pow = 0;
Long origBinaryVal = binaryVal;

while(binaryVal != 0) {
rem = (int)(binaryVal % 10);
decVal = decVal + rem * calcPower(2, pow);
binaryVal = binaryVal / 10;
pow++;
}
System.out.println("Binary Value: " + origBinaryVal);
System.out.println("Decimal Value: " + decVal);
}

// Calculates no1 To The Power no2
static int calcPower(int no1, int no2) {
int powVal = 1;
for(int i = 0; i < no2; i++) {
powVal = powVal * no1;
}
return powVal;
}
}
And the output is:

Enter the binary value
10100101
Binary Value: 10100101
Decimal Value: 165

Convert Decimal Number To Binary Number
Here is the example for the conversion from decimal number to binary number -

Divide by 2QuotientRemainder2 to the power
165 / 282120
82 / 241021
41 / 220122
20 / 210023
10 / 25024
5 / 22125
2 / 21026
1 / 20127

Binary Number for 165 is = 10100101

Let's establish the logic behind this conversion. 
  1. Divide decimal value by 2 and get quotient and remainder values. Multiply the remainder by 10 to the power of bit's position. Result is the leftmost bit for the binary number. New decimal value is equal to quotient.
  2. Repeat step 1 for new decimal value. Add the result to the earlier result.
  3. Repeat the steps till decimal value is 0. The total result is the converted binary number.
Loop Logic -
165 % 2 => 1 => 1x10=> 1 and 165 / 2 => 82
82 % 2 => 0 => 0x10=> 0 and 82 / 2 => 41
41 % 2 => 1 => 1x102 => 100 and 41 / 2 => 20
20 % 2 => 0 => 0x103 => 0 and 20 / 2 => 10
10 % 2 => 0 => 0x10 => 0 and 10 / 2 => 5
5 % 2 => 1 => 1x10 => 100000 and 5 / 2 => 2 
2 % 2 => 0 => 0x10 => 0 and 2 / 2 => 1 
1 % 2 => 1 => 1x10 => 10000000 and 1 / 2 => 0

1 + 0 + 100 + 0 + 0 + 100000 + 0 + 10000000 = 10100101

Here is the program for conversion binary number to decimal number.
import java.util.Scanner;

public class DecimalToBinary {
public static void main(String args[]) {
System.out.println("Enter the decimal value");
Scanner sc = new Scanner(System.in);
int decVal = sc.nextInt();

Long binaryVal = 0L;
int rem, pow = 0;
int origDecVal = decVal;

while(decVal != 0) {
rem = (int)(decVal % 2);
decVal = decVal / 2;
binaryVal = binaryVal + rem * calcPower(10, pow);
pow++;
}

System.out.println("Decimal Value: " + origDecVal);
System.out.println("Binary Value: " + binaryVal);
}

// Calculates no1 To The Power no2
static int calcPower(int no1, int no2) {
int powVal = 1;
for(int i = 0; i < no2; i++) {
powVal = powVal * no1;
}
return powVal;
}
}
And the output is:

Enter the decimal value
165
Decimal Value: 165
Binary Value: 10100101

Code can be accessed here: Github Link

Monday, July 27, 2020

Java: String Class

String is a class and contains simple text with all the possible characters having unicode code points. I have already discussed about the char data type and unicode code points set. We are using String class and its methods again & again in our examples. So, I thought we should go little bit deep into the String class details and explore the String class methods.

As we know String is a class and to use the class methods, we need to create an object of String. We have already discussed that when an object is created, it refers to the memory location where the object's fields are stored. So, String object also refers to the text only.
String s = "Logic Blocks";
As in the above example, String class can be used as primitive data types and assign value directly to the String object. But still, String class object refers to the memory location where the data is stored, not as data value. String class is an immutable class, the text can not be changed in the memory location. Whenever you assign new value to the String class object, it refers to new memory location, doesn't replace the old memory location with new text.

There are so many String class constructors and methods, are documented here. Few of them, we have already used in earlier examples: How to get input characters and strings from consoleHow to reverse any string backwards using recursive methodCount the words and Converts alphabets - lowercase to uppercase and uppercase to lowercase.
public class StringClassDemo {
public static void main(String args[]) {
char ch[] = {'S', 't', 'r', 'i', 'n', 'g', ' ', 'D', 'e', 'm', 'o'};
int in[] = {83, 116, 114, 105, 110, 103, 32, 68, 101, 109, 111};

String s = "Logic Blocks";
// String Class Constructors
String s1 = new String(ch);
String s2 = new String("String Demo");
String s3 = new String(ch, 0, ch.length);
String s4 = new String(in,0,in.length);
String s5 = new String("String Demo");

System.out.println("s1: " + s1 + ", s2: " + s2 + ", s3: " + s3 + ", s4: " + s4 + ", s5: " + s5 + "\n");

// String Class Methods
// length()
System.out.println("String s1 has length of " + s1.length() + " characters!!\n");

// isEmpty()
System.out.println("String s2 is empty :" + s2.isEmpty() + "\n");

// charAt()
System.out.println("String s3 has character at index 8 is " + s3.charAt(8) + "\n");

// codePointAt(), codePointBefore() and codePointCount()
System.out.println("String s4 has Unicode Code Point at index 8 is " + s4.codePointAt(8) + "\n");
System.out.println("String s5 has Unicode Code Point at index before 8 is " + s5.codePointBefore( 8) + "\n");
System.out.println("String s1 has code point count " + s1.codePointCount(0, 5) + "\n");

// equals() and equalsIgnoreCase()
System.out.println("String s2 is equal to s3 " + s2.equals(s3) + "\n");

s5 = "String demo";
System.out.println("String s4 is equal to s5 " + s4.equals(s5) + "\n");
System.out.println("String s4 is equal (Ignore Case) to s5 " + s4.equalsIgnoreCase(s5) + "\n");

// compareTo() and compareToIgnoreCase()
System.out.println("String s1 is compared to s5 " + s1.compareTo(s5) + "\n");
System.out.println("String s1 is compared (Ignore Case) to s5 " + s1.compareToIgnoreCase(s5) + "\n");

// startsWith() and endsWith()
System.out.println("String s2 starts with 'Str' " + s2.startsWith("Str") + "\n");
System.out.println("String s2 starts with 'ring' at index 1 " + s2.startsWith("ring", 1) + "\n");
System.out.println("String s2 starts with 'ring' at index 2 " + s2.startsWith("ring", 2) + "\n");
System.out.println("String s5 ends with 'mo' " + s5.endsWith("mo") + "\n");

// indexOf() and lastIndexOf()
String s6 = "Logic Blocks";
System.out.println("Index of character 'o' in String s6 is " + s6.indexOf('o') + "\n");
System.out.println("Last index of character 'o' in String s6 is " + s6.lastIndexOf('o') + "\n");

// substring()
System.out.println("Substring starting at index 2 in String s6 is " + s6.substring(2) + "\n");
System.out.println("Substring starting at between index 2 and 5 in String s6 is " + s6.substring(2, 5) + "\n");

// concat()
System.out.println("'Soft' is concatenated to String s6 " + "Soft ".concat(s6) + "\n");

// replace()
System.out.println("String s6 character 'B' is replaced by 'b' " + s6.replace('B','b') + "\n");

// split
String sp[] = s6.split(" ");
System.out.print("String s6 is split with space: ");
for(int i = 0; i < sp.length; i++) {
System.out.print("(" + (i+1) + ")" + sp[i] + " ");
}
System.out.println();

// toLowerCase() and toUpperCase()
System.out.println("String s6 is converted into lowercase " + s6.toLowerCase() + "\n");
System.out.println("String s6 is converted into uppercase " + s6.toUpperCase() + "\n");

// trim
String s7 = " Logic Blocks ";
System.out.println("String s7 before trim : " + s7 + "...\n");
System.out.println("All leading and trailing spaces are trimmed in String s7 : " + s7.trim() + "...\n");

// toCharArray() and valueOf()
char ca[] = s6.toCharArray();
System.out.print("String s6 is converted into char array: ");
for(int i = 0; i < ca.length; i++) {
System.out.print(ca[i] + " ");
}
System.out.println();
System.out.println("Character Array ca has value as " + String.valueOf(ca) + "\n");

// repeat()
System.out.println("String s6 is repeated 3 times " + s6.repeat(3) + "\n");
}
}
In above example, I have used most of the String class constructors and methods. There are more other methods which are related to advanced concepts like Class Pattern and Interface IntStream, so they are not covered here. Let's discuss them one by one.

String Class Constructors
String s = "Logic Blocks";
// String Class Constructors
String s1 = new String(ch);
String s2 = new String("String Demo");
String s3 = new String(ch, 0, ch.length);
String s4 = new String(in,0,in.length);
String str = "String Demo";
String s5 = new String(str);
String class object can be created by assigning text literal value directly to the object:
String s = "Logic Blocks";
String class object can be created using the array of characters:
char ch[] = {'S', 't', 'r', 'i', 'n', 'g', ' ', 'D', 'e', 'm', 'o'};
String s1 = new String(ch);
String  class object can be created by String text or another String object:
String s2 = new String("String Demo");
String str = "String Demo";
String s5 = new String(str);
String class object can be created by char array, starting index and ending index:
String s3 = new String(ch, 0, ch.length);
String class object can be created by unicode code points array (Characters are represented by Unicode set values: S = 83, t = 116...), starting index and ending index:
int in[] = {83, 116, 114, 105, 110, 103, 32, 68, 101, 109, 111};
String s4 =  new String(in,0,in.length);
String class Methods
length() method tells how many characters are there in the given string:
System.out.println("String s1 has length of " + s1.length() + " characters!!\n");
isEmpty() method tell if the String is empty:
System.out.println("String s2 is empty :" + s2.isEmpty() + "\n");
charAt() method returns the character at the particular index:
System.out.println("String s3 has character at index 8 is " + s3.charAt(8) + "\n");
codePointAt() method returns the unicode code point at the particular index:
System.out.println("String s4 has Unicode Code Point at index 8 is " + s4.codePointAt(8) + "\n");
codePointBefore() method returns the unicode code point before the particular index:
System.out.println("String s5 has Unicode Code Point at index before 8 is " + s5.codePointBefore( 8) + "\n");
codePointCount() method returns the count of total unicode code points in the given string:
System.out.println("String s1 has code point count " + s1.codePointCount(0, 5) + "\n");
equals() and equalsIgnoreCase() methods return true or false depending on whether the string text value is equal to another text or string:
System.out.println("String s2 is equal to s3 " + s2.equals(s3) + "\n");

s5 = "String demo";
System.out.println("String s4 is equal to s5 " + s4.equals(s5) + "\n");
System.out.println("String s4 is equal (Ignore Case) to s5 " + s4.equalsIgnoreCase(s5) + "\n");
compareTo() and compareToIgnoreCase() methods compare the string text value lexicographically with another text or string, return the negative / positive values:
System.out.println("String s1 is compared to s5 " + s1.compareTo(s5) + "\n");
System.out.println("String s1 is compared (Ignore Case) to s5 " + s1.compareToIgnoreCase(s5) + "\n");
startsWith() and endsWith() methods returns true or false depending on whether the string starts / ends with the given string:
System.out.println("String s2 starts with 'Str' " + s2.startsWith("Str") + "\n");
System.out.println("String s2 starts with 'ring' at index 1 " + s2.startsWith("ring", 1) + "\n");
System.out.println("String s2 starts with 'ring' at index 2 " + s2.startsWith("ring", 2) + "\n");
System.out.println("String s5 ends with 'mo' " + s5.endsWith("mo") + "\n");
indexOf() and lastIndexOf() methods return the starting index and last index of the string for the five string or character:
String s6 = "Logic Blocks";
System.out.println("Index of character 'o' in String s6 is " + s6.indexOf('o') + "\n");
System.out.println("Last index of character 'o' in String s6 is " + s6.lastIndexOf('o') + "\n");
substring() returns the part of the string between two indexes:
System.out.println("Substring starting at index 2 in String s6 is " + s6.substring(2) + "\n");
System.out.println("Substring starting at between index 2 and 5 in String s6 is " + s6.substring(2, 5) + "\n");
concat() method concatenates one string to other string:
System.out.println("'Soft' is concatenated to String s6 " + "Soft ".concat(s6) + "\n");
replace() method replaces one part of the string with another string and returns a new string:
System.out.println("String s6 character 'B' is replaced by 'b' " + s6.replace('B','b') + "\n");
split() method splits the string by given string and creates new string array:
String sp[]  = s6.split(" ");
System.out.print("String s6 is split with space: ");
for(int i = 0; i < sp.length; i++) {
System.out.print("(" + (i+1) + ")" + sp[i] + " ");
}
System.out.println();
toLowerCase() and toUpperCase() methods convert the string into lowercase and uppercase strings respectively:
System.out.println("String s6 is converted into lowercase " + s6.toLowerCase() + "\n");
System.out.println("String s6 is converted into uppercase " + s6.toUpperCase() + "\n");
trim() method truncates the trailing and leading spaces in the string: 
String s7 = " Logic Blocks       ";
System.out.println("String s7 before trim : " + s7 + "...\n");
System.out.println("All leading and trailing spaces are trimmed in String s7 : " + s7.trim() + "...\n");
toCharArray() and valueOf() methods convert string to char array and char array to the string respectively:
char ca[]  = s6.toCharArray();
System.out.print("String s6 is converted into char array: ");
for(int i = 0; i < ca.length; i++) {
System.out.print(ca[i] + " ");
}
System.out.println();
System.out.println("Character Array ca has value as " + String.valueOf(ca) + "\n");
repeat() method repeats the string given no of times:
System.out.println("String s6 is repeated 3 times " + s6.repeat(3) + "\n");
And the output for whole code is : 

s1: String Demo, s2: String Demo, s3: String Demo, s4: String Demo, s5: String Demo

String s1 has length of 11 characters!!

String s2 is empty :false

String s3 has character at index 8 is e

String s4 has Unicode Code Point at index 8 is 101

String s5 has Unicode Code Point at index before 8 is 68

String s1 has code point count 5

String s2 is equal to s3 true

String s4 is equal to s5 false

String s4 is equal (Ignore Case) to s5 true

String s1 is compared to s5 -32

String s1 is compared (Ignore Case) to s5 0

String s2 starts with 'Str' true

String s2 starts with 'ring' at index 1 false

String s2 starts with 'ring' at index 2 true

String s5 ends with 'mo' true

Index of character 'o' in String s6 is 1

Last index of character 'o' in String s6 is 8

Substring starting at index 2 in String s6 is gic Blocks

Substring starting at between index 2 and 5 in String s6 is gic

'Soft' is concatenated to String s6 Soft Logic Blocks

String s6 character 'B' is replaced by 'b' Logic blocks

String s6 is split with space: (1)Logic (2)Blocks 
String s6 is converted into lowercase logic blocks

String s6 is converted into uppercase LOGIC BLOCKS

String s7 before trim :  Logic Blocks       ...

All leading and trailing spaces are trimmed in String s7 : Logic Blocks...

String s6 is converted into char array: L o g i c   B l o c k s 
Character Array ca has value as Logic Blocks

String s6 is repeated 3 times Logic BlocksLogic BlocksLogic Blocks

Strings in switch-case statement
In earlier versions, switch-case statement could have only int or char data type values. But after JDK7, strings can also be used in switch-case statement. Here is the example:
import java.util.Scanner;

public class StringSwitchCase {
public static void main(String args[]) {
System.out.println("Enter two numbers");
int i, j, total;
Scanner sc = new Scanner(System.in);
i = sc.nextInt();
j = sc.nextInt();
System.out.println("What do you like to do? Sum / Difference");
String ans = sc.next();
switch(ans) {
case "Sum": total = i + j;
System.out.println("The answer is: " + total);
break;
case "Difference": total = i - j;
System.out.println("The answer is: " + total);
break;
default: total = 0;
System.out.println("Wrong choice");
}
}
}
In above example, the user is asked to enter the two numbers and also is asked whether the user wants sum  or difference between two numbers. Accordingly, the answer is displayed. Output is shown below:

Enter two numbers
20 34
What do you like to do? Sum / Difference
Sum
The answer is: 54

Enter two numbers
56 73
What do you like to do? Sum / Difference
Difference
The answer is: -17

Enter two numbers
45 32
What do you like to do? Sum / Difference
er
Wrong choice

All code is accessible at Github link.

Thursday, July 16, 2020

Java: Create Objects

We already discussed about classes and objects earlier and also we created objects by using the new operator in several examples. Once again, we will go to basics and try to understand how the objects are created and stored in memory.

Class Definition
A class definition consists of variables and methods. Each class definition is written in a separate file and the file is named as [classname].java; when compiled it converts into byte code file [classname].class file. A class definition is just a prototype. Class definition can have several variables and methods.
public class Dog {
int age;
int size;
String colorName;

Dog(int age, int size, String colorName) {
this.age = age;
this.size = size;
this.colorName = colorName;
}

public int getAge() {
return this.age;
}

public void bark() {
System.out.println("Bark - woof, woof");
}

public String getColor() {
return this.colorName;
}
}
Constructors
Constructors are the methods with the same name as [classname]. These methods are called only when the new class instance or object is being created. When there is no constructor, java uses its default constructor. Constructors can also be overridden, we have already discussed about overloading methods. Constructors are used to initialize the class variables.
Dog(int age, int size, String colorName) {
this.age = age;
this.size = size;
this.colorName = colorName;
}
Declaration
After creating the class definition and compiling the .java file, the class works as same as data type. We declare the objects of the class like we declare the variables of primitive data types.
int age;
Dog dog1;
new Operator
The new Operator creates the instance / object of the class, allocates the physical memory to the object and initializes the variables using the constructor method. And then the object reference is assigned to the object variable. You can use the declaration and creation of the object in one statement.
dog1 = new Dog(3, 4, "WHITE");
Dog dog2 = new Dog(2, 4, "BLACK");
Memory Allocation
Each object has their own copy of variables in the memory. When the object is created, a new memory reference is allocated to the object and each object has their copy of their own variables. In above example, dog1 and dog2 are two objects and they are two separate memory locations.

dog1
        ↴
age size colorName
3 4 "WHITE"

dog2
        ↴
agesizecolorName
24"BLACK"

Assigning an object to other object variable
We know that two object variables are two separate references to the objects. In above example, dog1 and dog2 are referring to two different objects of same data type (class). But when we assign, one object to another object reference, the object reference is passed. After the below statement, both object references are same. dog1 is not referring to original data variables any more.
dog1 = dog2;
dog1
        ↴
agesizecolorName
24"BLACK"

dog2
        ↴
agesizecolorName
24"BLACK"

this keyword
When the method is called, the object reference, on which the method is invoked, passed implicitly as a parameter. The this keyword refers to the current class instance and can be used to access its members. It is mainly used to permit the name of a method parameter or a local variable to be same as the instance variable.
Dog(int age, int size, String colorName) {
this.age = age;
this.size = size;
this.colorName = colorName;
}
Memory Deallocation / Garbage Collection
As we saw that the memory is dynamically allocated to the object reference variables with available memory locations. If keep allocating memory to the variables and not releasing the memory locations, the memory will get exhausted. It is possible that new operator fails to create new objects. So, Java uses the garbage collection approach. All the memory locations not used in the program are released and recycled to use to allocate new variables. As soon as the program terminates, all the memory locations are released and ready for further use. Garbage collection runs automatically in the background without intervene the programmer.

Wednesday, July 15, 2020

Java: What is an infinite loop?

When a loop runs continuously and there is no way or condition for program to come out from the loop to end it, then it is an infinite loop. The system will hang as program won't be able to run further instructions. It is not a syntax error and compiler will compile it successfully. And it won't throw any exception, so it won't stop the loop. So, the infinite loops should be avoided. There should be at least one condition in the loop to end the loop.

Here are the few examples of infinite loop - 
public class FiniteInfinite {
public static void main(String args[]) {
infinite();
//finite();
}

public static void infinite() {
int i = 0;
System.out.println("Infinite Loop");
while(true) {
i++;
System.out.print(i + " ");
if(i%40 == 0) System.out.println("");
}
}

public static void finite() {
int i = 0;
System.out.println("Finite Loop");
while(true) {
i++;
System.out.print(i + " ");
if(i%40 == 0) System.out.println("");
if(i == 100) break;
}
System.out.println("Out of the loop");
}
}
In above example, there are two methods, infinite while loop will run continuously, and will never stop. You have to terminate the program to stop it.

Infinite Loop
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 
961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 ...............................................................

But if you write any statement after the infinite loop, the compiler will give an error: unreachable error -
System.out.println("Infinite Loop");
while(true) {
i++;
System.out.print(i + " ");
if(i%40 == 0) System.out.println("");
}
System.out.println("Out of the loop");
The compiler error:

Error:(17, 9) java: unreachable statement

In the finite loop program will stop after the if condition is met. When the value of variable i is 100, the program comes out from the loop and prints the statement.
public class FiniteInfinite {
public static void main(String args[]) {
// infinite();
finite();
}

public static void infinite() {
int i = 0;
System.out.println("Infinite Loop");
while(true) {
i++;
System.out.print(i + " ");
if(i%40 == 0) System.out.println("");
}
}

public static void finite() {
int i = 0;
System.out.println("Finite Loop");
while(true) {
i++;
System.out.print(i + " ");
if(i%40 == 0) System.out.println("");
if(i == 100) break;
}
System.out.println("Out of the loop");
}
}
Output will be -

 Finite Loop
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 Out of the loop

Tuesday, July 14, 2020

Java: Let's Practice - Converts alphabets - lowercase to uppercase and uppercase to lowercase

As I mentioned in the post Char Data Type, that the characters in Java use unicode set and are represented as unsigned 16-bit in memory and use char data type. char data type is converted implicitly into an int data type and can be handled as an integer (add / subtract an integer value). We have already seen this in my earlier post. 

Let's make use of these following features of char data type and String class to change alphabets cases (lowercase to uppercase or uppercase to lowercase) -
  • char data type is represented as an integer value and its range is 0 to 65,535. char data type values can be manipulated like integers.
  • Uppercase alphabets (A~Z) have values from 65 to 90. And lowercase letters (a~z) have values from 97 to 122
  • String object can be converted into a character array by String class method toCharArray() and a character array can also be converted back into string by String class's static method valueOf().
  • After converting to the character array, 32 is added to all uppercase alphabets and 32 is subtracted from all lowercase alphabets. Result values are int data type and can't be converted to char data type back automatically. Type casting (Explicit Conversion) is needed to convert int to char data type.
import java.util.Scanner;

public class CaseChange {
public static void main(String args[]) {
String s1, s2;
char ch[];

System.out.println("Enter the string:");
Scanner sc = new Scanner(System.in);
s1 = sc.nextLine();

// Convert the string to character array
ch = s1.toCharArray();
s2 = changeCase(ch);

System.out.println();

System.out.println("String Case Changed:");
System.out.println(s2);
}

public static String changeCase(char[] ch) {
// Manipulate all the characters in array
for(int i = 0; i < ch.length; i++) {
if((ch[i] >= 65) && (ch[i] <= 90)) {
// If the character is A~Z
ch[i] = (char)(ch[i] + 32);
}
else if((ch[i] >= 97) && (ch[i] <= 122))
{
// If the character is a~z
ch[i] = (char)(ch[i] - 32);
}
}

// Convert character array back to the string
String str = String.valueOf(ch);
return str;
}
}
Output is:

Enter the string:
Object-Oriented Programming

String Case Changed:
oBJECT-oRIENTED pROGRAMMING