Fib Bonacci
Fib Bonacci
namespace Grammer
{
class program
{
public static void Main(string[] args)
{
//Console.WriteLine("Hello, World!");
//double heightInMeters = 1.88;
//Console.WriteLine($"the variable is {nameof(heightInMeters)} and the
height {(heightInMeters)}");
//string firstname = "sami";
//string lastname = "end";
//string phonenumber = "251 912 34 56 78 ";
//Console.WriteLine($"my name is {firstname + " " + lastname}" + $" my
phone number is {phonenumber}");
//double a = 0.1;
//double b = 0.2;
//if( a+b == 0.3)
//{
// Console.WriteLine($"{a} + {b} is equal to {0.3}");
//}
//else
//{
// Console.WriteLine($"{a} + {b} is not equal to
{0.300000000000000004}");
//}
//int a = 10;
//Object o = "3";
//int k = 4;
//if(o is k)
//{
// Console.WriteLine("equal");
//}
//else
//{
// Console.WriteLine("not Equal");
//}
// fibonacci
//Console.ReadKey();
}
}
}