Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package L1;
- import java.util.*;
- public class Zadanie3 {
- void metoda() {
- Scanner sc= new Scanner(System.in);
- System.out.println("Podaj liczbe naturalna:");
- Iterator it = new IterFib(sc.nextInt());
- while (!it.isDone()) {
- System.out.println(it.current());
- it.next();
- }
- }
- public static void main(String args[]) {
- Zadanie3 test=new Zadanie3();
- test.metoda();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment