Difference between revisions of "Manuals/calci/Readline-Sync"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:24px">'''READLINE-SYNC'''</div><br/> *Synchronous Readline for interactively running to have a conversation with the user via a console. ==EXAMPLES== ''...") |
|||
| Line 13: | Line 13: | ||
int num; | int num; | ||
System.out.println("Enter an Integer number:"); | System.out.println("Enter an Integer number:"); | ||
| − | |||
//The input provided by user is stored in num | //The input provided by user is stored in num | ||
Scanner input = new Scanner(System.in); | Scanner input = new Scanner(System.in); | ||
num = input.nextInt(); | num = input.nextInt(); | ||
| − | |||
/* If number is divisible by 2 then it's an even number | /* If number is divisible by 2 then it's an even number | ||
* else odd number*/ | * else odd number*/ | ||
if ( num % 2 == 0 ) | if ( num % 2 == 0 ) | ||
System.out.println("Entered number is even"); | System.out.println("Entered number is even"); | ||
| − | + | else | |
System.out.println("Entered number is odd"); | System.out.println("Entered number is odd"); | ||
} | } | ||
} | } | ||
Revision as of 05:47, 11 October 2017
READLINE-SYNC
- Synchronous Readline for interactively running to have a conversation with the user via a console.
EXAMPLES
1. Check Odd/Even
- Java
import java.util.Scanner;
class CheckEvenOdd {
public static void main(String args[])
{
int num;
System.out.println("Enter an Integer number:");
//The input provided by user is stored in num
Scanner input = new Scanner(System.in);
num = input.nextInt();
/* If number is divisible by 2 then it's an even number
* else odd number*/
if ( num % 2 == 0 )
System.out.println("Entered number is even");
else
System.out.println("Entered number is odd");
}
}