Wednesday, 15 April 2015

Android Studio Temperature Conversion

Hi , Now I am moving towards new Program that is Android Studio Calculator , a very basic calculator which will look as below : Temperature Converter Android Studio This link has been moved to...
Read More »

Friday, 13 February 2015

WAP to find first Position of a String in another String

Hi , My today's post is on a program to find  Position of a String in another String. For Example ,Given two strings, A and B, how to find the first position of B in A? For instance, A = " ab123cdefgcde"; B= "cde" Then the first position of B in A is 6. import java.util.Scanner; public...
Read More »

Saturday, 7 February 2015

Android Studio Calculator Example

Hi , Now I am moving towards new Program that is Android Studio Calculator , a very basic calculator which will look as below : This link has been moved to new address  http://www.java...
Read More »

Thursday, 5 February 2015

Android Button Example

Hi Today's my post on How to use Button in Android .Button is a UI widget . If you are very beginner first go through my first example of Android Hello World which helps you how to run a very basic program...
Read More »

Sunday, 1 February 2015

Hello World Android Studio

Hi, After installing Android Studio Let us see how to create our very first program Hello World This link has been moved to a new site here -----> Hello World Android Studio Step 8: Run  Run...
Read More »

Android Studio Installation

Android Studio is the official IDE for Android application development, based on IntelliJ IDEA. On top of the capabilities you expect from IntelliJ, Android Studio offers: Flexible Gradle-based build system Build variants and multiple apk file generation Code templates to help you...
Read More »

Tuesday, 27 January 2015

Program for Shifting characters in a String eg. String "abcde" should be printed as "eabcd"



import java.util.Scanner;

public class SB
{
public static void main(String []args) {

Scanner in = new Scanner(System.in);

         System.out.println("Enter a string to shift characters");
      String  test = in.nextLine();


 For further visit    Javainhouse
Read More »

Saturday, 24 January 2015

Find length of String without using any length or size method

import java.util.Scanner; public class SB { public static void main(String[] args) { { String test;       Scanner in = new Scanner(System.in);      For further program please visit my new blog http://javainhouse.blogspot.com ...
Read More »

Print "welcome bangalore" as welcome erolagnab

import java.util.Scanner;


public class SB

{

public static void main(String[] args) {

{
String test="welcome bangalore";

String reverse="";


 int i=0;

 String a[]=test.split(" ");


 for (int j = a[1].length()-1; j >= 0; j--)
 {

reverse = reverse + a[1].charAt(j);
 }


 a[1]=reverse;
 test=a[0] +" "+ a[1];
 System.out.println(test);



}
}
}











Read More »

Thursday, 22 January 2015

Program in java to check whether a String is palindrome or not

import java.util.*; public class Palindrome {    public static void main(String args[])    {       String original, reverse = "";       Scanner in = new Scanner(System.in);   Program in java to check whether a String...
Read More »