Advertisement
Spocoman

Balls

Nov 29th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.76 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Balls
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int ballsNum = int.Parse(Console.ReadLine());
  10.             int totalPoints = 0;
  11.             int red = 0;
  12.             int orange = 0;
  13.             int yellow = 0;
  14.             int white = 0;
  15.             int black = 0;
  16.             int other = 0;
  17.  
  18.             for (int i = 0; i < ballsNum; i++)
  19.             {
  20.                 string ball = Console.ReadLine();
  21.                 if (ball == "red")
  22.                 {
  23.                     red++;
  24.                     totalPoints += 5;
  25.                 }
  26.                 else if (ball == "orange")
  27.                 {
  28.                     orange++;
  29.                     totalPoints += 10;
  30.                 }
  31.                 else if (ball == "yellow")
  32.                 {
  33.                     yellow++;
  34.                     totalPoints += 15;
  35.                 }
  36.                 else if (ball == "white")
  37.                 {
  38.                     white++;
  39.                     totalPoints += 20;
  40.                 }
  41.                 else if (ball == "black")
  42.                 {
  43.                     black++;
  44.                     totalPoints /= 2;
  45.                 }
  46.                 else
  47.                 {
  48.                     other++;
  49.                 }
  50.             }
  51.             Console.WriteLine($"Total points: { totalPoints}");
  52.             Console.WriteLine($"Red balls: { red}");
  53.             Console.WriteLine($"Orange balls: { orange}");
  54.             Console.WriteLine($"Yellow balls: { yellow}");
  55.             Console.WriteLine($"White balls: { white}");
  56.             Console.WriteLine($"Other colors picked: { other}");
  57.             Console.WriteLine($"Divides from black balls: { black}");
  58.         }
  59.     }
  60. }
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement