package ph.edu.prog2.itgc.pe.runner;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadingStringss {
public static void main(String[] args) throws FileNotFoundException {
File file = new File("String/string.in");
Scanner scanner = new Scanner(file);
while (scanner.hasNext()) {
String message = scanner.next();
System.out.println(message);
}
scanner.close();
}
}
Walang komento:
Mag-post ng isang Komento