Bonus Score problem
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Asd
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Enter score: ");
            var num = int.Parse(Console.ReadLine());
            var bonusScore = 0.00;
            if (num > 1000)
            {
                bonusScore = num * 0.10;
            }
            else if (num > 100)
            {
                bonusScore = num * 0.20;
            }
            else if (num <= 100)
            {
                bonusScore = 5;
            }
            else
            if (num%2 == 0)
            {
                bonusScore += 1;
            }
            else if (num%10 == 5)
            {
                bonusScore += 2;
            }
            Console.WriteLine("Bonus score: {0}", bonusScore);
            Console.WriteLine("Total score: {0}", num + bonusScore);
        }
    }
}
30/100 може ли някой да ми покаже къде ми е грешката
Охх вярно , мерси много :)