“java reade workboard ввод” Ответ

Возьмите ценность из клавиатуры Java

  import java.util.Scanner;

public class Main{
    public static void main(String args[]){

    Scanner scan= new Scanner(System.in);

    //For string

    String text= scan.nextLine();

    System.out.println(text);

    //for int

    int num= scan.nextInt();

    System.out.println(num);
    }
  /*Is better to create another instance of Scanner if you have to use both nextline 
  	and nextInt because they can conflict each other
  */
  
}
Requiem

java reade workboard ввод

Scanner keyboard = new Scanner(System.in);
System.out.println("enter an integer");
int myint = keyboard.nextInt();
Cirex

Ответы похожие на “java reade workboard ввод”

Вопросы похожие на “java reade workboard ввод”

Больше похожих ответов на “java reade workboard ввод” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования