Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import java.io.*;
  2. import java.util.Scanner;
  3.  
  4. public class OpiskelijatTiedostossa {
  5. public static void main(String[] args) throws IOException {
  6.  
  7. Scanner file = new Scanner(new File("opiskelijat.txt"));
  8. String rivi;
  9. System.out.println("Kurssin opiskelijat: ");
  10. while(file.hasNextLine()) {
  11. rivi = file.nextLine();
  12. System.out.println(file.nextLine());
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement