photo

Kishore


Last seen: 5 months 前 自 2023 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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 ...

1 year 前 | 0

已回答
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)

1 year 前 | 0

已回答
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)

1 year 前 | 0