Friday, August 24, 2018

Thursday, August 23, 2018

Write a JAVA program for the given string and take another string and check whether the taken string is substring of given string or not.

/* Write a JAVA program for the given string and take another string and check whether the taken string is substring of given string or not. Given String : google Input String : gle Output : gle is the substring of google */ import java.util.Scanner; class CheckSubstring { public static void main(String[] args) { String s="google"; ...

How to count occurrences of each character of a string without using Regular Expression in java?

package com.altafjava.coos.test; public class CountOccurrences2 { public static void main(String[] args) { String s="annotation"; System.out.println("Original String = "+s); while(s.length()!=0){ int count=0; for(int i=0;i<s.length();i++){ if(s.charAt(0)==s.charAt(i)) ...

Wednesday, August 22, 2018

How to find sum of all digits of a number in java?

package com.altafjava.sad.test; public class SumAllDigit { public static void main(String[] args) { int num=9526; System.out.println("Original number = "+num); int sum=0; while(num!=0){ int remainder=num%10; sum=sum+remainder; num=num/10; } System.out.println("Sum...

Tuesday, August 21, 2018

Monday, August 20, 2018

Java Program to check two strings are Anagram or not

An anagram of a string is another string that contains same characters, only the order of characters can be different. For example, “LISTEN” and “SILENT” are anagram of each other. package com.caots.test; import java.util.Arrays; public class Test { public static void main(String[]...