18 lines
346 B
Java
18 lines
346 B
Java
package pr2.io.linecounter;
|
|
|
|
import java.io.BufferedReader;
|
|
import java.io.FileReader;
|
|
import java.io.IOException;
|
|
|
|
public class LineCounter {
|
|
|
|
public static void main(String[] args) throws IOException {
|
|
|
|
int lines = 0;
|
|
|
|
// TODO: Implementieren
|
|
|
|
System.out.printf("Datei: %s hat %d Zeilen%n", args[0], lines);
|
|
}
|
|
}
|