Math, asked by ankugowda96, 1 day ago

VALIDATE_DATA 1) Number=90 2) If (Number>90 and Number<95) then 3) display "Data within the range" 4) else 5) display "Data not within the range" 6) end-if a) Data within the range will get displayed b) Data not within the range will get displayed c) Nothing will be displayed

Answers

Answered by onlyfordrive566
1

OneCompiler's Java online editor supports stdin and users can give inputs to the programs using the STDIN textbox under the I/O tab. Using Scanner class in Java program can we can read the inputs. Following is a sample program shows how to read STDIN ( A string in this case ).

import java.util.Scanner;

class Input {

public static void main(String[] Argos) {

Scanner input = new Scanner(System.in);

System.out.println("Enter your name: ");

String input = input.next();

System.out.println("Hello, " + input);

}

}

Adding dependencies

One Compiler supports for dependency management. Users can add dependencies in the build.gradle file and use them in their programs. When you add the dependencies for the first time, the first run might be a little slow as we download

Answered by tarunsewade
0

Answer:

data not within the range

Similar questions