Каждое последующее число ряда Фибоначчи — это сумма двух предыдущих чисел.
0 1 1 2 3 5 8 13 21 34 …
0 1 1 2 3 5 8 13 21 34 …
Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
Console.Write(
"Введите конец диапазона от 1 до : "
);
-
int
end=
int
.Parse(Console.ReadLine());
-
int
j=1;
-
for
(
int
i=1; i<=end; i+=j) {
-
Console.Write(
"{0} "
, i);
-
j=i-j;
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
Console.Write(
"Введите конец диапазона от 1 до : "
);
-
int
end=
int
.Parse(Console.ReadLine());
-
int
j=1;
-
for
(
int
i=1; i<=end; i+=j) {
-
Console.Write(
"{0} "
, i);
-
j=i-j;
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
Введите конец диапазона от 1 до : 25
1 1 2 3 5 8 13 21
1 1 2 3 5 8 13 21