5 great Android KitKat features
5 great Android KitKat features Android releasing new operating system called android KitKat.It is denoted as android 4.4.The … Read More
5 great Android KitKat features Android releasing new operating system called android KitKat.It is denoted as android 4.4.The … Read More
Some of android mobiles have problem about sound,it is very less sound in … Read More
Use Pen drive as RAM in Low Memory Computer
You can customize your public profile URL when you edit your public profile. Custom public profile URLs are available on a first come, first served basis. Move your cursor over Profile at … Read More
Tip: How to hard reset your Windows Phone Mobile reset means that we are going to repair our phone like new mobile.Reset mobile get get loss the all the downloaded … Read More
import java.util.*; class ArmstrongNumber { public static void main(String args[]) { int n, sum = 0, temp, r; Scanner in = new Scanner(System.in); System.out.println(“Enter a number to check if it … Read More
import java.util.Scanner; class FloydTriangle { public static void main(String args[]) { int n, num = 1, c, d; Scanner in = new Scanner(System.in); System.out.println(“Enter the number of rows of floyd’s … Read More
import java.util.*; class ReverseString { public static void main(String args[]) { String original, reverse = “”; Scanner in = new Scanner(System.in); System.out.println(“Enter a string to reverse”); original = in.nextLine(); int … Read More
import java.util.Scanner; class CompareStrings { public static void main(String args[]) { String s1, s2; Scanner in = new Scanner(System.in); System.out.println(“Enter the first string”); s1 = in.nextLine(); System.out.println(“Enter the second string”); … Read More
import java.util.Scanner; class LinearSearch { public static void main(String args[]) { int c, n, search, array[]; Scanner in = new Scanner(System.in); System.out.println(“Enter number of elements”); n = in.nextInt(); array = … Read More