-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCódigo Exercício 8.cs
38 lines (34 loc) · 1.09 KB
/
Código Exercício 8.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Exercício_8
{
internal class Program
{
static void Main(string[] args)
{
int n,n1, elemento,nanterior, natual, nfibonacci;
nanterior=elemento= 0;
natual = nfibonacci= 1;
Console.WriteLine("Informe um número");
n = int.Parse(Console.ReadLine());
while (n < 0)
{
Console.WriteLine("Número inválido\n Informe outro número");
n=int.Parse(Console.ReadLine());
}
Console.Write("Sequência de Fibonacci: " + nfibonacci);
do
{
nfibonacci = nanterior + natual;
Console.Write(" " + nfibonacci);
n1=n-natual;
nanterior = natual;
natual = nfibonacci;
} while (nfibonacci<n1);
Console.ReadLine();
}
}
}