Code: Select all
public class Nr_Fjaleve {
public static void main(String args[]) throws FileNotFoundException {
Scanner input = new Scanner(new File("teksti.txt"));
PrintStream output = new PrintStream(new File("countwords.txt"));
int count = 0;
while (input.hasNextLine()) {
String fjala = input.next();
count++;
}
output.print(count);
}
}