Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

take string , double and int value from useer using java

import java.util.Scanner;

public class Solution {

public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    int i = scan.nextInt();
    double d = scan.nextDouble();

    scan.nextLine();
    String s = scan.nextLine();

    System.out.println("String: " + s);
    System.out.println("Double: " + d);
    System.out.println("Int: " + i);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #string #double #int #useer #java
ADD COMMENT
Topic
Name
4+3 =