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)
{
double points = int.Parse(Console.ReadLine());
double bonusPoints = 0.0;
if (points >= 1000)
{
bonusPoints = 10 / 100 * points;
}
else if (points >= 100)
{
bonusPoints = 20 / 100 * points;
}
else if (points <= 100)
{
bonusPoints = 5;
}
if (points % 2 == 0)
{
bonusPoints += 1;
}
else if (points % 10 == 5)
{
bonusPoints += 2;
}
Console.WriteLine(bonusPoints);
Console.WriteLine(points + bonusPoints);
}
}
}