package dk.itu.oop.lecture5; class FibonacciTests { public static int fibA(int N){ if (N==0) return 0; int n1 = 0; int n = 1; int i = 1; while (i