Ошибка Целочисленное значение Java - PullRequest
0 голосов
/ 30 апреля 2018

Как я могу прочитать целое число в этой следующей программе? Не работает В данный момент не компилируется.

/**
 * Main class of the Java program. 
 * 
 */
import java.util.Scanner;

//...
class Scanner{
    Scanner in = new Scanner(System.in);
    int num = in.nextInt();
}


public class Main {

    public static void main(String[] args) {

        // we print a heading and make it bigger using HTML formatting
        System.out.println("<h4>-- Binaere Suche --</h4>");
        int anzahl = 0; int zahl;

    }
}

1 Ответ

0 голосов
/ 30 апреля 2018
import java.util.Scanner;

// This will print what you want but will not make it look bigger as it
// will get printed in console
public class Main {

    public static void main(String[] args) {

    Scanner in = new Scanner(System.in);
    int num = in.nextInt();
 // we print a heading and make it bigger using HTML formatting
        System.out.println("<h4>--"+num+" --</h4>");

    }
}
...