Задача "Bonus Score"
Някой може ли да ми каже къде е грешката,защото аз не мога да я намеря. Става въпрос за задачата "Bonus Score".
Това ми е кода:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bonus_Score
{
    class Program
    {
        static void Main(string[] args)
        {
            var point = int.Parse(Console.ReadLine());
            var bonusScore = 0.0;
            if (point <= 100)
            {
                bonusScore +=5;
            }
            if (point >= 1000)
            {
                bonusScore = point * 10 / 100.0;
            }
            if (point >= 100)
            {
                bonusScore = point * 20 / 100.0;
            }
            if (point % 2 == 0)
            {
                bonusScore +=1;
            }
            else if (point % 10 == 5)
            {
                bonusScore +=2;
            }
            Console.WriteLine(bonusScore);
            Console.WriteLine(point+ bonusScore);
                
        }
    }
}
 
Мерси!!!