Program to find odd or even in Java
import java.util.Scanner; class OddOrEven { public static void main(String args[]) { int x; System.out.println(“Enter an integer to check if it is odd or even “); Scanner in = new Scanner(System.in); … Read More
import java.util.Scanner; class OddOrEven { public static void main(String args[]) { int x; System.out.println(“Enter an integer to check if it is odd or even “); Scanner in = new Scanner(System.in); … Read More
import java.util.Scanner; class AddNumbers { public static void main(String args[]) { int x, y, z; System.out.println(“Enter two integers to calculate their sum “); Scanner in = new Scanner(System.in); x = … Read More
import java.util.Scanner; class MultiplicationTable { public static void main(String args[]) { int n, c; System.out.println(“Enter an integer to print it’s multiplication table”); Scanner in = new Scanner(System.in); n = in.nextInt(); … Read More
import java.util.*; class Palindrome { public static void main(String args[]) { String original, reverse=””; Scanner in = new Scanner(System.in); System.out.println(“Enter a string to check if it is a palindrome”); original … Read More
Copying and pasting You can copy just about any kind of text on your phone and paste it almost anywhere you can type, saving yourself time and headaches. Copy an … Read More
Using Xbox Music and a data connection, Windows Phone 8 can listen to a song and then try and tell you what it is. This is done by pressing the … Read More
Flash animation files are embedded as SWF (Small Web Format) files in webpages. With a bit of elbow grease, it is possible to download these files without the overhead of … Read More
When you’re using an Android device with mobile data connection enabled, wouldn’t it be convenient for another computer device such as a Windows-based notebook to share this connection for access … Read More
To take a screenshot or screen capture with the windows phone Hold down the POWER button and the START button at the same time. … Read More
How to Close a Running App The Android system doesn’t need you to close a running app for every instance. … Read More