Difference between revisions of "Manuals/calci/Readline-Sync"

From ZCubes Wiki
Jump to navigation Jump to search
 
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<div style="font-size:24px">'''READLINE-SYNC'''</div><br/>
 
<div style="font-size:24px">'''READLINE-SYNC'''</div><br/>
 
==DESCRIPTION==
 
==DESCRIPTION==
*Synchronous Readline for interactively running to have a conversation with the user via a console.
+
*Synchronous Readline for interactively running to have a conversation with the user via a console.<br>
 +
*Original codes in java as examples.<br>
 +
*z3 codes with z3 notations are shown below the java code.<br><br>
  
 
==EXAMPLES==
 
==EXAMPLES==
 
'''1.''' '''Check Odd/Even<br>'''
 
'''1.''' '''Check Odd/Even<br>'''
'''Java'''<br>
+
'''Java Code:'''<br>
 
<span class="plainlinks">[https://beginnersbook.com/2014/02/java-program-to-check-even-or-odd-number/ https://beginnersbook.com/2014/02/java-program-to-check-even-or-odd-number]</span>
 
<span class="plainlinks">[https://beginnersbook.com/2014/02/java-program-to-check-even-or-odd-number/ https://beginnersbook.com/2014/02/java-program-to-check-even-or-odd-number]</span>
  
Line 19: Line 21:
 
     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");
Line 28: Line 30:
 
}</source>
 
}</source>
  
'''z3 code'''
+
 
 +
'''z3 code:'''<br>
 
<source lang="cpp">
 
<source lang="cpp">
<syntaxhighlight lang="cpp">
 
 
var readlineSync = require('readline-sync');
 
var readlineSync = require('readline-sync');
 
console.log("Starting");   
 
console.log("Starting");   
Line 38: Line 40:
 
         {console.log(num + " is an even number")},
 
         {console.log(num + " is an even number")},
 
         {console.log(num + " is an odd number")};</source>
 
         {console.log(num + " is an odd number")};</source>
 +
 +
 +
'''2. Sum of Array'''<br>
 +
'''Java Code:'''<br>
 +
<span class="plainlinks">[https://beginnersbook.com/2014/01/java-program-to-sum-the-elements-of-an-array/ https://beginnersbook.com/2014/01/java-program-to-sum-the-elements-of-an-array]</span>
 +
<source lang="cpp">
 +
import java.util.Scanner;
 +
class SumDemo{
 +
  public static void main(String args[]){
 +
      Scanner scanner = new Scanner(System.in);
 +
      int[] array = new int[10];
 +
      int sum = 0;
 +
      System.out.println("Enter the elements:");
 +
      for (int i=0; i<10; i++)
 +
      {
 +
      array[i] = scanner.nextInt();
 +
      }
 +
      for( int num : array) {
 +
          sum = sum+num;
 +
      }
 +
      System.out.println("Sum of array elements is:"+sum);
 +
  }
 +
}</source>
 +
 +
 +
'''z3 code:'''<br>
 +
<source lang="cpp">
 +
var readlineSync = require('readline-sync');
 +
console.log("Starting"); 
 +
      var k;
 +
      k = readlineSync.question("Number of elements: ");
 +
      var numbers = new Array(k);
 +
      //Enter numbers using comma
 +
      var num = readlineSync.question("Enter the elements: ");
 +
      var temp = num.split(",");
 +
        for (var i=0; i<k; i++)
 +
        {
 +
      numbers[i] = temp[i];
 +
        }
 +
      var sumofarray = SUM(numbers);
 +
      console.log("Sum:" +sumofarray);</source>

Latest revision as of 07:27, 11 October 2017

READLINE-SYNC


DESCRIPTION

  • Synchronous Readline for interactively running to have a conversation with the user via a console.
  • Original codes in java as examples.
  • z3 codes with z3 notations are shown below the java code.

EXAMPLES

1. Check Odd/Even
Java Code:
https://beginnersbook.com/2014/02/java-program-to-check-even-or-odd-number

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");
  }
}


z3 code:

var readlineSync = require('readline-sync');
console.log("Starting");   
    var temp;
    var num = readlineSync.question("Enter any number: ");
    ( num % 2 == 0 )::
        {console.log(num + " is an even number")},
        {console.log(num + " is an odd number")};


2. Sum of Array
Java Code:
https://beginnersbook.com/2014/01/java-program-to-sum-the-elements-of-an-array

import java.util.Scanner;
class SumDemo{
   public static void main(String args[]){
      Scanner scanner = new Scanner(System.in);
      int[] array = new int[10];
      int sum = 0;
      System.out.println("Enter the elements:");
      for (int i=0; i<10; i++)
      {
    	  array[i] = scanner.nextInt();
      }
      for( int num : array) {
          sum = sum+num;
      }
      System.out.println("Sum of array elements is:"+sum);
   }
}


z3 code:

var readlineSync = require('readline-sync');
console.log("Starting");   
      var k;
      k = readlineSync.question("Number of elements: ");
      var numbers = new Array(k);
      //Enter numbers using comma
      var num = readlineSync.question("Enter the elements: ");
      var temp = num.split(",");
        for (var i=0; i<k; i++)
        {
    	  numbers[i] = temp[i];
        }
      var sumofarray = SUM(numbers);
      console.log("Sum:" +sumofarray);