package com.altafjava.test;
public class Test {
public static void main(String[] args) {
String s="526";
int sum=0;
for(int i=0;i<s.length();i++){
sum=(sum*10)+(s.charAt(i)-48);
}
System.out.println("Original...
RECENTLY MOST VIEWS
-
For example, If given number 165 a nd given digit is ...
MOST POPULAR
-
Note: A number will be called DISARIUM if sum of its...
-
The International Mobile Station Equipment Identity(IMEI)...
-
Harshad Number : In recreational mathematics, a Harshad...
-
package com.altafjava.sln.test; public class...
-
package com.fdcis.test; /** * How to find duplicate...
Blog Archive
-
▼
2018
(38)
-
▼
August
(19)
- How to convert string into int primitive data type?
- Write a JAVA program for the given string and take...
- How to find largest number less than a given numbe...
- How to count occurrences of each character of a st...
- How to count occurrences of each character of a st...
- How to find second largest number in an integer ar...
- How to find sum of all digits of a number in java?
- How to find duplicate elements in an array using H...
- How to find duplicate elements in an array?
- Java Program to check two strings are Anagram or not
- How do you check the equality of two inner arrays ...
- How do you check the equality of two arrays in java?
- How to count duplicate characters in a string in j...
- How to find duplicate characters in a string in java?
- How do you remove all white spaces from a string i...
- How do you remove all white spaces from a string i...
- How to print Number Pyramid Pattern in java?
- How to create a pyramid of numbers in java?
- How to reverse a string in java?
-
▼
August
(19)
About
Hello ALTAF
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 find largest number less than a given number and without a given digit?
For example, If given number 165 and given digit is 6 then you should find the largest number less than 165 but it should not contain 4 in it. In this case answer is 159.
package com.altafjava.test;
public class FindLargestNo {
public...
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))
...
How to count occurrences of each character of a string in java?
package com.altafjava.coocis.test;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class CountCountOccurrences {
public static void main(String[] args) {
String s="annotation";
System.out.println("Original String = "+s);
while(s.length()!=0){
int...
Wednesday, August 22, 2018
How to find second largest number in an integer array?
package com.altafjava.sln.test;
public class SecondLargestNumber {
public static void main(String[] args) {
int[] arr={5,20,8,1,9,2,14,34,11};
int largest=Integer.MIN_VALUE;
int secondLargest=Integer.MIN_VALUE;
for(int i=0;i<arr.length;i++){
if(arr[i]>largest){
...
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
How to find duplicate elements in an array using HashSet?
package com.altafjava.fdeia.test;
import java.util.HashSet;
public class Test2 {
public static void main(String[] args) {
int[] arr={1,6,5,1,2,2,9,6};
System.out.println("Input Array = 1,6,5,1,2,2,9,6");
System.out.print("The repeating elements...
How to find duplicate elements in an array?
package com.altafjava.fdeia.test;
public class Test {
public static void main(String[] args) {
int[] arr={1,6,5,1,2,2,9,6};
System.out.println("Input Array = 1,6,5,1,2,2,9,6");
System.out.print("The repeating elements are : ");
...
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[]...
Subscribe to:
Posts (Atom)
Program List
- armstrong
- char-occurrances
- check-anagram
- check-duck-no
- check-duplicate-no
- check-endianess-of-os
- check-equality-of-two-arrays
- check-fibonacci-series
- check-harshad-no
- check-kaprekar
- check-keith-no
- check-niven-no
- check-palindrome
- check-prime
- check-prime-no
- check-substring
- check-unique-no
- check-valid-imei
- convert-array-to-list
- convert-string-to-int
- count-duplicate-char-in-string
- count-occurrences-char-of-string
- create-immutable-class
- disarium
- filter-number
- find-1st-non-repeat-char
- find-common-no-in-array
- find-duplicate-char-in-string
- find-duplicate-no-in-array
- find-largest-no-less-than-given-no
- find-palindrome
- find-second-largest-number
- image-store-in-database
- jdbc-program
- number-pyramid-pattern
- numeric-pattern
- remove-duplicate-in-string-array
- remove-white-space-of-string
- reverse-list
- reverse-string
- search-element-in-array
- search-list
- sorting-array
- sorting-list
- sorting-user-defined-object
- string-reverse
- sum-of-all-digits
- swap-2-no
- view-system-properties