hamedmf
05-18-2008, 11:30 AM
Q1 : Write a piece of code that would calculate the following function (Fibonacci series): F(0)=1,f(1)=1
F(n) = f(n-1+f(n-2) example : f(2) = f(1)+f(0)=1+1=2
write a piece of code that will get all numbers that are multiple of 2 and divisor of some input number ?
write a pice o f code to print the multiplication table from 1 to 10 ?
F(n) = f(n-1+f(n-2) example : f(2) = f(1)+f(0)=1+1=2
write a piece of code that will get all numbers that are multiple of 2 and divisor of some input number ?
write a pice o f code to print the multiplication table from 1 to 10 ?
