photo

Kishore


Last seen: 3 meses hace Con actividad desde 2023

Followers: 0   Following: 0

Estadística

All
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

6 meses hace

Respondida
I can't deal with this code.Please help me:)
clear all; close all; clc; n= input("Enter an number to calculate its fibonacci number: ") F = [1 1]; % Initially F has ...

alrededor de 1 año hace | 0

Respondida
Fibonacci and Golden Ratio
fib=[0 1]; i=3; while(i<=21) fib(i)=fib(i-1)+fib(i-2); gr=fib(i)/fib(i-1) i=i+1; end disp(fib)

alrededor de 1 año hace | 0

Respondida
For loop for fibonacci series
fib=[]; fib(1)=0; fib(2)=1; for i=3:10 fib(i)=fib(i-1)+fib(i-2); end disp(fib)

alrededor de 1 año hace | 0