Advertisement
dragonbs

02. Bonus Score

Sep 18th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.91 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _02.BonusScore
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int startingPoints = int.Parse(Console.ReadLine());
  10.             double bonusPoints = 0;
  11.  
  12.             if (startingPoints<=100)
  13.             {
  14.                 bonusPoints = 5;
  15.             }
  16.             else if (startingPoints>1000)
  17.             {
  18.                 bonusPoints = startingPoints * 0.1;
  19.             }
  20.             else
  21.             {
  22.                 bonusPoints = startingPoints * 0.2;
  23.             }
  24.  
  25.             if (startingPoints % 2 == 0)
  26.             {
  27.                 bonusPoints = bonusPoints + 1;
  28.             }
  29.             else if (startingPoints % 10 == 5)
  30.             {
  31.                 bonusPoints += 2;
  32.             }
  33.             Console.WriteLine(bonusPoints);
  34.             Console.WriteLine(startingPoints + bonusPoints);
  35.         }
  36.     }
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement