Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- import java.io.*;
- public class elso {
- public static void main(String [] args){
- Scanner bill = new Scanner (System.in);
- System.out.println("Mi legyen a szó?");
- String word = bill.nextLine();
- System.out.println("Hányszor akarod kiíratni?");
- int n = bill.nextInt();
- try{
- PrintWriter kimenet = new PrintWriter(new FileWriter("elso.txt"));
- for(int i=0; i<=n; i++)
- kimenet.println(word + " ");
- kimenet.close();
- } catch(IOException e){}
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment